From: Wayne Davison Date: Mon, 23 Apr 2007 18:40:00 +0000 (+0000) Subject: No need to reset quiet, since we tell parse_arguments() that it X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/875a13b42c8fa16811e429e3773ee942d3873d69 No need to reset quiet, since we tell parse_arguments() that it should prevent quiet from getting set. --- diff --git a/clientserver.c b/clientserver.c index fdd19cc1..95c16016 100644 --- a/clientserver.c +++ b/clientserver.c @@ -625,8 +625,7 @@ static int rsync_module(int f_in, int f_out, int i, char *addr, char *host) verbose = 0; /* future verbosity is controlled by client options */ ret = parse_arguments(&argc, (const char ***) &argv, 0); - quiet = 0; /* Don't let someone try to be tricky. */ - am_server = 1; /* ditto */ + am_server = 1; /* Don't let someone try to be tricky. */ if (lp_ignore_errors(module_id)) ignore_errors = 1;