summaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
authorBrandon Casey <drafnel@gmail.com>2013-09-23 18:49:06 (GMT)
committerJunio C Hamano <gitster@pobox.com>2013-10-16 16:35:30 (GMT)
commit7a6d6423c5a66589112f651a394b3a3ec076a7cf (patch)
treeec62ded09ddfb7efaedaa4cebcc08786643d4820 /contrib
parent18fe5add3385a5b41e294881992c1980dcf51ffd (diff)
downloadgit-7a6d6423c5a66589112f651a394b3a3ec076a7cf.zip
git-7a6d6423c5a66589112f651a394b3a3ec076a7cf.tar.gz
git-7a6d6423c5a66589112f651a394b3a3ec076a7cf.tar.bz2
contrib/git-credential-gnome-keyring.c: exit non-zero when called incorrectly
If the correct arguments were not specified, this program should exit non-zero. Let's do so. Signed-off-by: Brandon Casey <drafnel@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'contrib')
-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 3ff541c..04852d7 100644
--- a/contrib/credential/gnome-keyring/git-credential-gnome-keyring.c
+++ b/contrib/credential/gnome-keyring/git-credential-gnome-keyring.c
@@ -396,7 +396,7 @@ int main(int argc, char *argv[])
if (!argv[1]) {
usage(argv[0]);
- goto out;
+ exit(EXIT_FAILURE);
}
/* lookup operation callback */