Merge branch 'maint' of git://repo.or.cz/git/fastimport into maint
authorJunio C Hamano <junkio@cox.net>
Wed, 2 May 2007 18:00:16 +0000 (11:00 -0700)
committerJunio C Hamano <junkio@cox.net>
Wed, 2 May 2007 18:00:16 +0000 (11:00 -0700)
* 'maint' of git://repo.or.cz/git/fastimport:
Teach import-tars about GNU tar's @LongLink extension.

git-cvsserver.perl
test-delta.c
index 25816c5a21285cae1d8e42f46f26126a03c6631f..3501c1bc3a7fb1482ef3eec10c9fc91bf4d19e4d 100755 (executable)
@@ -2454,7 +2454,7 @@ sub update
                     #$log->debug("ADDED    $name");
                     $head->{$name} = {
                         name => $name,
-                        revision => 1,
+                        revision => $head->{$name}{revision} ? $head->{$name}{revision}+1 : 1,
                         filehash => $hash,
                         commithash => $commit->{hash},
                         modified => $commit->{date},
index 16595ef0a9022b1a9c677a36205526eb3567a93d..3d885ff37ee7fc43dec05dd827679d68cee5516b 100644 (file)
@@ -10,8 +10,9 @@
 
 #include "git-compat-util.h"
 #include "delta.h"
+#include "cache.h"
 
-static const char usage[] =
+static const char usage_str[] =
        "test-delta (-d|-p) <from_file> <data_file> <out_file>";
 
 int main(int argc, char *argv[])
@@ -22,7 +23,7 @@ int main(int argc, char *argv[])
        unsigned long from_size, data_size, out_size;
 
        if (argc != 5 || (strcmp(argv[1], "-d") && strcmp(argv[1], "-p"))) {
-               fprintf(stderr, "Usage: %s\n", usage);
+               fprintf(stderr, "Usage: %s\n", usage_str);
                return 1;
        }