aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2012-09-14 20:48:22 -0700
committerJunio C Hamano <gitster@pobox.com>2012-09-14 20:48:22 -0700
commitddbca33ca7e08d837ab4faa9a7da563f3f7700aa (patch)
tree818c0aac27fde907e601e639dca79e247c5d747a
parentdabdc0178ec043ad42f6b3ab80e54f9c9404ab42 (diff)
parente27ddb64568412b75035a05366c9f091153155ed (diff)
downloadgit-ddbca33ca7e08d837ab4faa9a7da563f3f7700aa.tar.gz
git-ddbca33ca7e08d837ab4faa9a7da563f3f7700aa.tar.xz
Merge branch 'jc/maint-ident-missing-human-name' into maint-1.7.11
* jc/maint-ident-missing-human-name: split_ident_line(): make best effort when parsing author/committer line
-rw-r--r--builtin/commit.c17
-rw-r--r--ident.c6
2 files changed, 20 insertions, 3 deletions
diff --git a/builtin/commit.c b/builtin/commit.c
index 20cef95d6..62028e7b4 100644
--- a/builtin/commit.c
+++ b/builtin/commit.c
@@ -478,6 +478,20 @@ static void export_one(const char *var, const char *s, const char *e, int hack)
strbuf_release(&buf);
}
+static int sane_ident_split(struct ident_split *person)
+{
+ if (!person->name_begin || !person->name_end ||
+ person->name_begin == person->name_end)
+ return 0; /* no human readable name */
+ if (!person->mail_begin || !person->mail_end ||
+ person->mail_begin == person->mail_end)
+ return 0; /* no usable mail */
+ if (!person->date_begin || !person->date_end ||
+ !person->tz_begin || !person->tz_end)
+ return 0;
+ return 1;
+}
+
static void determine_author_info(struct strbuf *author_ident)
{
char *name, *email, *date;
@@ -530,7 +544,8 @@ static void determine_author_info(struct strbuf *author_ident)
if (force_date)
date = force_date;
strbuf_addstr(author_ident, fmt_ident(name, email, date, IDENT_STRICT));
- if (!split_ident_line(&author, author_ident->buf, author_ident->len)) {
+ if (!split_ident_line(&author, author_ident->buf, author_ident->len) &&
+ sane_ident_split(&author)) {
export_one("GIT_AUTHOR_NAME", author.name_begin, author.name_end, 0);
export_one("GIT_AUTHOR_EMAIL", author.mail_begin, author.mail_end, 0);
export_one("GIT_AUTHOR_DATE", author.date_begin, author.tz_end, '@');
diff --git a/ident.c b/ident.c
index 443c0751b..484e0a980 100644
--- 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 == '>') {