From: Dmitry Ivankov Date: Thu, 11 Aug 2011 10:21:07 +0000 (+0600) Subject: fast-import: don't fail on omitted committer name X-Git-Tag: v1.7.7-rc1~44^2~3 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=17fb00721b854b1c469e44ad709a9cad2128f11d;p=git.git fast-import: don't fail on omitted committer name fast-import format declares 'committer_name SP' to be optional in 'committer_name SP LT email GT'. But for a (commit) object SP is obligatory while zero length committer_name is ok. git-fsck checks that SP is present, so fast-import must prepend it if the name SP part is omitted. It doesn't do so and thus for "LT email GT" ident it writes a bad object. Name cannot contain LT or GT, ident always comes after SP in fast-import. So if ident starts with LT reuse the SP as if a valid 'SP LT email GT' ident was passed. This fixes a ident parsing bug for a well-formed fast-import input. Though the parsing is still loose and can accept a ill-formed input. Signed-off-by: Dmitry Ivankov Signed-off-by: Junio C Hamano --- diff --git a/fast-import.c b/fast-import.c index 78d978684..c07f15572 100644 --- a/fast-import.c +++ b/fast-import.c @@ -1971,6 +1971,10 @@ static char *parse_ident(const char *buf) size_t name_len; char *ident; + /* ensure there is a space delimiter even if there is no name */ + if (*buf == '<') + --buf; + gt = strrchr(buf, '>'); if (!gt) die("Missing > in ident string: %s", buf); diff --git a/t/t9300-fast-import.sh b/t/t9300-fast-import.sh index a659dd408..09ef6ba1d 100755 --- a/t/t9300-fast-import.sh +++ b/t/t9300-fast-import.sh @@ -352,7 +352,7 @@ data <