diff options
author | Nguyễn Thái Ngọc Duy <pclouds@gmail.com> | 2013-12-20 17:53:52 +0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-12-20 14:05:07 -0800 |
commit | 82246b765bdfc191aa809cf3dd672de18ad6352a (patch) | |
tree | 26cce411bfbbc1c6fd35a73b41dfdd0a39b8c5fd /daemon.c | |
parent | 2f93541d88fadd1ff5307d81c2c8921ee3eea058 (diff) | |
download | git-82246b765bdfc191aa809cf3dd672de18ad6352a.tar.gz |
daemon: be strict at parsing parameters --[no-]informative-errorsnd/daemon-informative-errors-typofix
Use strcmp() instead of starts_with()/!prefixcmp() to stop accepting
--informative-errors-just-a-little
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'daemon.c')
-rw-r--r-- | daemon.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1278,11 +1278,11 @@ int main(int argc, char **argv) make_service_overridable(arg + 18, 0); continue; } - if (!prefixcmp(arg, "--informative-errors")) { + if (!strcmp(arg, "--informative-errors")) { informative_errors = 1; continue; } - if (!prefixcmp(arg, "--no-informative-errors")) { + if (!strcmp(arg, "--no-informative-errors")) { informative_errors = 0; continue; } |