diff options
author | Junio C Hamano <gitster@pobox.com> | 2021-06-10 12:04:22 +0900 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2021-06-10 12:04:22 +0900 |
commit | 26b25e03b204548d08fd6a284f24c65ef2cbcba0 (patch) | |
tree | ad6236095426ea7a1f39d6c851095c94ff27aea7 /mailinfo.c | |
parent | ebf3c04b262aa27fbb97f8a0156c2347fecafafb (diff) | |
parent | 72ee47ceebc7d3ddbd31942b28f9fe47f00b0540 (diff) | |
download | git-26b25e03b204548d08fd6a284f24c65ef2cbcba0.tar.gz |
Merge branch 'ef/mailinfo-short-name'
We historically rejected a very short string as an author name
while accepting a patch e-mail, which has been loosened.
* ef/mailinfo-short-name:
mailinfo: don't discard names under 3 characters
Diffstat (limited to 'mailinfo.c')
-rw-r--r-- | mailinfo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mailinfo.c b/mailinfo.c index ccc6beb27e..184ed8d581 100644 --- a/mailinfo.c +++ b/mailinfo.c @@ -19,7 +19,7 @@ static void cleanup_space(struct strbuf *sb) static void get_sane_name(struct strbuf *out, struct strbuf *name, struct strbuf *email) { struct strbuf *src = name; - if (name->len < 3 || 60 < name->len || strpbrk(name->buf, "@<>")) + if (!name->len || 60 < name->len || strpbrk(name->buf, "@<>")) src = email; else if (name == out) return; |