Commit 20893751 authored by Wayne Davison's avatar Wayne Davison

Some argc-based actions in parse_arguments() shouldn't happen on

the server side.
parent f8949e76
......@@ -1275,7 +1275,7 @@ int parse_arguments(int *argc_p, const char ***argv_p)
}
}
if (human_readable && argc == 2) {
if (human_readable && argc == 2 && !am_server) {
/* Allow the old meaning of 'h' (--help) on its own. */
usage(FINFO);
exit_cleanup(0);
......@@ -1387,7 +1387,7 @@ int parse_arguments(int *argc_p, const char ***argv_p)
xfer_dirs = 1;
}
if (argc < 2 && !read_batch)
if (argc < 2 && !read_batch && !am_server)
list_only |= 1;
if (xfer_dirs >= 4) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment