Fix git-daemon argument-parsing bug
authorH. Peter Anvin <hpa@zytor.com>
Fri, 21 Oct 2005 01:34:58 +0000 (18:34 -0700)
committerJunio C Hamano <junkio@cox.net>
Fri, 21 Oct 2005 05:56:34 +0000 (22:56 -0700)
Fix stupid bug in parsing the --init-timeout option.

Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Signed-off-by: Junio C Hamano <junkio@cox.net>
daemon.c

index 693af51..8bb4d91 100644 (file)
--- a/daemon.c
+++ b/daemon.c
@@ -562,7 +562,7 @@ int main(int argc, char **argv)
                if (!strncmp(arg, "--timeout=", 10)) {
                        timeout = atoi(arg+10);
                }
-               if (!strncmp(arg, "--init-timeout=", 10)) {
+               if (!strncmp(arg, "--init-timeout=", 15)) {
                        init_timeout = atoi(arg+15);
                }
                if (!strcmp(arg, "--")) {