aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2012-05-25 12:05:26 -0700
committerJunio C Hamano <gitster@pobox.com>2012-05-25 12:05:26 -0700
commit500cf7cbb49f9917194ccab4563376eeb025c152 (patch)
treeca8568672b0c541163d8702e7c60eaa9a81d7471
parent0bc8bea2b4d73b20ce418b88300f498396d0a924 (diff)
parentd9955fd60fa79da1e7310a55c30e2d87c227d6f9 (diff)
downloadgit-500cf7cbb49f9917194ccab4563376eeb025c152.tar.gz
git-500cf7cbb49f9917194ccab4563376eeb025c152.tar.xz
Merge branch 'jk/ident-split-fix'
An author/committer name that is a single character was mishandled as an invalid name by mistake.
-rw-r--r--ident.c2
-rwxr-xr-xt/t6006-rev-list-format.sh7
2 files changed, 8 insertions, 1 deletions
diff --git a/ident.c b/ident.c
index 87c697c2b..5df094d17 100644
--- a/ident.c
+++ b/ident.c
@@ -244,7 +244,7 @@ int split_ident_line(struct ident_split *split, const char *line, int len)
if (!split->mail_begin)
return status;
- for (cp = split->mail_begin - 2; line < cp; cp--)
+ for (cp = split->mail_begin - 2; line <= cp; cp--)
if (!isspace(*cp)) {
split->name_end = cp + 1;
break;
diff --git a/t/t6006-rev-list-format.sh b/t/t6006-rev-list-format.sh
index a01d24450..f94f0c48e 100755
--- a/t/t6006-rev-list-format.sh
+++ b/t/t6006-rev-list-format.sh
@@ -283,4 +283,11 @@ test_expect_success 'oneline with empty message' '
test_line_count = 5 testg.txt
'
+test_expect_success 'single-character name is parsed correctly' '
+ git commit --author="a <a@example.com>" --allow-empty -m foo &&
+ echo "a <a@example.com>" >expect &&
+ git log -1 --format="%an <%ae>" >actual &&
+ test_cmp expect actual
+'
+
test_done