summaryrefslogtreecommitdiff
path: root/contrib/credential/gnome-keyring/git-credential-gnome-keyring.c
diff options
context:
space:
mode:
authorLibravatar David Aguilar <davvid@gmail.com>2013-02-23 16:50:17 -0800
committerLibravatar Junio C Hamano <gitster@pobox.com>2013-02-24 13:31:08 -0800
commitc358ed756e6a6c6f762b453dd3698fa06bbb9664 (patch)
tree954c6e0fc2902ac4d3062e6496779b4537876340 /contrib/credential/gnome-keyring/git-credential-gnome-keyring.c
parentgit-cvsimport: use a lowercase "usage:" string (diff)
downloadtgif-c358ed756e6a6c6f762b453dd3698fa06bbb9664.tar.xz
contrib/credential: use a lowercase "usage:" string
Make the usage string consistent with Git. Reviewed-by: Jonathan Nieder <jrnieder@gmail.com> Signed-off-by: David Aguilar <davvid@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'contrib/credential/gnome-keyring/git-credential-gnome-keyring.c')
-rw-r--r--contrib/credential/gnome-keyring/git-credential-gnome-keyring.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/credential/gnome-keyring/git-credential-gnome-keyring.c b/contrib/credential/gnome-keyring/git-credential-gnome-keyring.c
index 41f61c5db3..f2cdefee60 100644
--- a/contrib/credential/gnome-keyring/git-credential-gnome-keyring.c
+++ b/contrib/credential/gnome-keyring/git-credential-gnome-keyring.c
@@ -401,7 +401,7 @@ static void usage(const char *name)
const char *basename = strrchr(name,'/');
basename = (basename) ? basename + 1 : name;
- fprintf(stderr, "Usage: %s <", basename);
+ fprintf(stderr, "usage: %s <", basename);
while(try_op->name) {
fprintf(stderr,"%s",(try_op++)->name);
if(try_op->name)