summaryrefslogtreecommitdiff
path: root/clientserver.c
diff options
context:
space:
mode:
authorWayne Davison <wayned@samba.org>2005-06-10 16:57:43 +0000
committerWayne Davison <wayned@samba.org>2005-06-10 16:57:43 +0000
commit59b0e7a82da96820fa78c7d967450cbc28086fac (patch)
tree634e7501215edd0eb42199b4d148b4ff9f18784a /clientserver.c
parentb4fc3987f20e6af92aeb5e0c6ff80e3a70df3e87 (diff)
downloadrsync-59b0e7a82da96820fa78c7d967450cbc28086fac.tar.gz
Changed the "max verbosity" setting from global to per-module.
Diffstat (limited to 'clientserver.c')
-rw-r--r--clientserver.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/clientserver.c b/clientserver.c
index 4f8c3e2e..faf15936 100644
--- a/clientserver.c
+++ b/clientserver.c
@@ -478,8 +478,8 @@ static int rsync_module(int f_in, int f_out, int i)
#ifndef DEBUG
/* don't allow the logs to be flooded too fast */
- if (verbose > lp_max_verbosity())
- verbose = lp_max_verbosity();
+ if (verbose > lp_max_verbosity(i))
+ verbose = lp_max_verbosity(i);
#endif
if (protocol_version < 23