1
0
Fork 0
mirror of https://github.com/git/git.git synced 2024-05-14 10:26:09 +02:00

Merge branch 'ef/mailinfo-short-name' into next

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
This commit is contained in:
Junio C Hamano 2021-05-20 09:24:30 +09:00
commit 5ee67911ea

View File

@ -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;