mirror of
https://github.com/git/git.git
synced 2025-12-12 20:36:24 +01:00
Merge branch 'nd/daemon-informative-errors-typofix'
* nd/daemon-informative-errors-typofix: daemon: be strict at parsing parameters --[no-]informative-errors
This commit is contained in:
4
daemon.c
4
daemon.c
@@ -1278,11 +1278,11 @@ int main(int argc, char **argv)
|
||||
make_service_overridable(arg + 18, 0);
|
||||
continue;
|
||||
}
|
||||
if (starts_with(arg, "--informative-errors")) {
|
||||
if (!strcmp(arg, "--informative-errors")) {
|
||||
informative_errors = 1;
|
||||
continue;
|
||||
}
|
||||
if (starts_with(arg, "--no-informative-errors")) {
|
||||
if (!strcmp(arg, "--no-informative-errors")) {
|
||||
informative_errors = 0;
|
||||
continue;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user