aboutsummaryrefslogtreecommitdiffstats
path: root/ident.c
diff options
context:
space:
mode:
authorTodd Zullinger <tmz@pobox.com>2008-07-30 13:48:33 -0400
committerJunio C Hamano <gitster@pobox.com>2008-07-30 11:42:01 -0700
commit5354a56fe70420c147f930e0f7f1decbae685d19 (patch)
treebbff775593fd38a42f46825e47b66ce1f898e78f /ident.c
parent9b6bf4d575e216db9240907940e9f6c619877735 (diff)
downloadgit-5354a56fe70420c147f930e0f7f1decbae685d19.tar.gz
Replace uses of "git-var" with "git var"
Signed-off-by: Todd Zullinger <tmz@pobox.com> 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 b35504a8d2..09cf0c95c9 100644
--- a/ident.c
+++ b/ident.c
@@ -204,7 +204,7 @@ const char *fmt_ident(const char *name, const char *email,
if ((warn_on_no_name || error_on_no_name) &&
name == git_default_name && env_hint) {
fprintf(stderr, env_hint, au_env, co_env);
- env_hint = NULL; /* warn only once, for "git-var -l" */
+ env_hint = NULL; /* warn only once, for "git var -l" */
}
if (error_on_no_name)
die("empty ident %s <%s> not allowed", name, email);