summaryrefslogtreecommitdiff
path: root/init-db.c
diff options
context:
space:
mode:
authorJunio C Hamano <junkio@cox.net>2005-12-06 06:29:36 (GMT)
committerJunio C Hamano <junkio@cox.net>2005-12-06 06:29:36 (GMT)
commit4a62eaed317e260b0bdb0ce5f340757d2a6dfef1 (patch)
treee075da548b5da63088e1d562ac1742accedab2e5 /init-db.c
parent9c2e7c0ca240e1508871cd22f2ee380f52d69a53 (diff)
downloadgit-4a62eaed317e260b0bdb0ce5f340757d2a6dfef1.zip
git-4a62eaed317e260b0bdb0ce5f340757d2a6dfef1.tar.gz
git-4a62eaed317e260b0bdb0ce5f340757d2a6dfef1.tar.bz2
init-db: check extra arguments and complain.
"git-init-db junk" does not complain but just ignores "junk". Die with the usage string in such a case. Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'init-db.c')
-rw-r--r--init-db.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/init-db.c b/init-db.c
index 8195b68..ead37b5 100644
--- a/init-db.c
+++ b/init-db.c
@@ -237,9 +237,7 @@ int main(int argc, char **argv)
for (i = 1; i < argc; i++, argv++) {
char *arg = argv[1];
- if (arg[0] != '-')
- break;
- else if (!strncmp(arg, "--template=", 11))
+ if (!strncmp(arg, "--template=", 11))
template_dir = arg+11;
else
die(init_db_usage);