Andrew's git
/
gitweb.git
/ blobdiff
summary
|
log
|
commit
|
diff
|
tree
commit
grep
author
committer
pickaxe
?
re
reencode_string(): introduce and use same_encoding()
[gitweb.git]
/
ident.c
diff --git
a/ident.c
b/ident.c
index 443c0751bd1f63c059649f9f7f9174349cc1d270..484e0a980308fd2201bf443815a58c41bea17073 100644
(file)
--- a/
ident.c
+++ b/
ident.c
@@
-210,8
+210,10
@@
int split_ident_line(struct ident_split *split, const char *line, int len)
split->name_end = cp + 1;
break;
}
- if (!split->name_end)
- return status;
+ if (!split->name_end) {
+ /* no human readable name */
+ split->name_end = split->name_begin;
+ }
for (cp = split->mail_begin; cp < line + len; cp++)
if (*cp == '>') {