diff options
| author | Wayne Davison <wayned@samba.org> | 2006-02-01 19:36:37 +0000 |
|---|---|---|
| committer | Wayne Davison <wayned@samba.org> | 2006-02-01 19:36:37 +0000 |
| commit | 7a6653bc6c49c4457f6e2771492f30216ac3646a (patch) | |
| tree | ac3bf54c0975fca15b8a7e1f71160c74f4d241e7 /clientserver.c | |
| parent | 72f2d1b38495477d63142ed5a490164bff94bc90 (diff) | |
| download | android_external_rsync-7a6653bc6c49c4457f6e2771492f30216ac3646a.tar.gz android_external_rsync-7a6653bc6c49c4457f6e2771492f30216ac3646a.tar.bz2 android_external_rsync-7a6653bc6c49c4457f6e2771492f30216ac3646a.zip | |
Ignore the --quiet option if someone sent it to us (which doesn't
happen when talking to a normal client).
Diffstat (limited to 'clientserver.c')
| -rw-r--r-- | clientserver.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/clientserver.c b/clientserver.c index 3b1567bf..b3d3ceb2 100644 --- a/clientserver.c +++ b/clientserver.c @@ -28,6 +28,7 @@ #include "rsync.h" extern int verbose; +extern int quiet; extern int list_only; extern int am_sender; extern int am_server; @@ -619,6 +620,7 @@ static int rsync_module(int f_in, int f_out, int i) 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. */ if (filesfrom_fd == 0) filesfrom_fd = f_in; |
