summaryrefslogtreecommitdiff
path: root/ident.c
diff options
context:
space:
mode:
authorLibravatar Junio C Hamano <gitster@pobox.com>2012-05-25 12:05:26 -0700
committerLibravatar Junio C Hamano <gitster@pobox.com>2012-05-25 12:05:26 -0700
commit500cf7cbb49f9917194ccab4563376eeb025c152 (patch)
treeca8568672b0c541163d8702e7c60eaa9a81d7471 /ident.c
parentMerge branch 'rs/xdiff-fast-hash-fix' (diff)
parentfix off-by-one error in split_ident_line (diff)
downloadtgif-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.
Diffstat (limited to 'ident.c')
-rw-r--r--ident.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ident.c b/ident.c
index 87c697c2b0..5df094d175 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;