ident: reword empty ident error message
There's on point in printing the name, since it is by definition the empty string if we have reached this code path. Instead, let's be more clear that we are complaining about the empty name, but still show the email address that it is attached to (since that may provide some context to the user). Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
parent
a21c2f94fb
commit
b00f6cfcd7
2
ident.c
2
ident.c
@ -281,7 +281,7 @@ const char *fmt_ident(const char *name, const char *email,
|
||||
if (error_on_no_name) {
|
||||
if (name == git_default_name.buf)
|
||||
fputs(env_hint, stderr);
|
||||
die("empty ident %s <%s> not allowed", name, email);
|
||||
die("empty ident name (for <%s>) not allowed", email);
|
||||
}
|
||||
pw = xgetpwuid_self();
|
||||
name = pw->pw_name;
|
||||
|
Loading…
Reference in New Issue
Block a user