diff options
author | Junio C Hamano <gitster@pobox.com> | 2013-08-02 16:06:29 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-08-02 16:07:45 -0700 |
commit | 77aa93481d1b12372a70959de58917ff815b3bc6 (patch) | |
tree | 5c8faed225c6bfd17622b00976c5bc8e791ed801 | |
parent | t5540/5541: smart-http does not support "--force-with-lease" (diff) | |
download | tgif-77aa93481d1b12372a70959de58917ff815b3bc6.tar.xz |
send-pack: fix parsing of --force-with-lease option
The last argument for parse_push_cas_option() is if it is "unset"
(i.e. --no-force-with-lease), and we are parsing the option with an
explicit value here, so it has to be 0.
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r-- | builtin/send-pack.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/send-pack.c b/builtin/send-pack.c index 41dc51221c..4482f16efb 100644 --- a/builtin/send-pack.c +++ b/builtin/send-pack.c @@ -183,7 +183,7 @@ int cmd_send_pack(int argc, const char **argv, const char *prefix) } if (!prefixcmp(arg, "--" CAS_OPT_NAME "=")) { if (parse_push_cas_option(&cas, - strchr(arg, '=') + 1, 1) < 0) + strchr(arg, '=') + 1, 0) < 0) exit(1); continue; } |