From: Johannes Schindelin <Johannes.Schindelin@gmx.de>
To: Chris Riddoch <riddochc@gmail.com>
Cc: git@vger.kernel.org, spearce@spearce.org
Subject: [PATCH] import-tars: Use the "Link indicator" to identify directories
Date: Wed, 16 May 2007 17:22:26 +0100 (BST) [thread overview]
Message-ID: <Pine.LNX.4.64.0705161659530.6410@racer.site> (raw)
In-Reply-To: <6efbd9b70705111308v47a76b04n9328ebf393a209e6@mail.gmail.com>
Earlier, we used the mode to determine if a name was associated with
a directory. This fails, since some tar programs do not set the mode
correctly. However, the link indicator _has_ to be set correctly.
Noticed by Chris Riddoch.
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
---
On Fri, 11 May 2007, Chris Riddoch wrote:
> I believe I've uncovered an issue in fast-import, but I don't
> know the code well enough yet to debug it. So, I'll produce my
> evidence and let others work on finding the solution. It should
> be pretty easy to reproduce.
It was easy. Thanks.
The problem is -- again -- that a directory is overwritten, since
it is not recognized as a directory. Earlier, I tried to use the
trailing "/" for that. Which fails with your example.
I actually took the time to research in Wikipedia what should be
the correct way to find out if the current item is a directory...
contrib/fast-import/import-tars.perl | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/contrib/fast-import/import-tars.perl b/contrib/fast-import/import-tars.perl
index 1e6fa5a..23aeb25 100755
--- a/contrib/fast-import/import-tars.perl
+++ b/contrib/fast-import/import-tars.perl
@@ -75,7 +75,7 @@ foreach my $tar_file (@ARGV)
$mode = oct $mode;
$size = oct $size;
$mtime = oct $mtime;
- next if $mode & 0040000;
+ next if $typeflag == 5; # directory
print FI "blob\n", "mark :$next_mark\n", "data $size\n";
while ($size > 0 && read(I, $_, 512) == 512) {
--
1.5.2.rc3.2506.ge455
next prev parent reply other threads:[~2007-05-16 16:22 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-05-11 20:08 Another fast-import/import-tars issue Chris Riddoch
2007-05-16 16:22 ` Johannes Schindelin [this message]
2007-05-16 18:24 ` [PATCH] import-tars: Use the "Link indicator" to identify directories Junio C Hamano
2007-05-16 18:49 ` Junio C Hamano
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=Pine.LNX.4.64.0705161659530.6410@racer.site \
--to=johannes.schindelin@gmx.de \
--cc=git@vger.kernel.org \
--cc=riddochc@gmail.com \
--cc=spearce@spearce.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).