summaryrefslogtreecommitdiff
path: root/ident.c
diff options
context:
space:
mode:
authorJeff King <peff@peff.net>2012-05-24 23:26:32 (GMT)
committerJunio C Hamano <gitster@pobox.com>2012-05-25 00:16:34 (GMT)
commitb00f6cfcd7232d90c4625c42eb9694d4ed2dc615 (patch)
treecb63343e84ce910adecca031203538f57ad3448f /ident.c
parenta21c2f94fb6e74ebddb5c78cf6b5f68983646530 (diff)
downloadgit-b00f6cfcd7232d90c4625c42eb9694d4ed2dc615.zip
git-b00f6cfcd7232d90c4625c42eb9694d4ed2dc615.tar.gz
git-b00f6cfcd7232d90c4625c42eb9694d4ed2dc615.tar.bz2
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>
Diffstat (limited to 'ident.c')
-rw-r--r--ident.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ident.c b/ident.c
index e279039..f5160e1 100644
--- a/ident.c
+++ b/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;