summaryrefslogtreecommitdiffstats
path: root/source/smbd/process.c
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2000-10-10 21:52:36 +0000
committerJeremy Allison <jra@samba.org>2000-10-10 21:52:36 +0000
commit5e09611acf02bff78647608274fb4a544c4f51a6 (patch)
treefe6864ebff9ff3a602cf440bcf3e93f13b8c479f /source/smbd/process.c
parentb17eadb2220c0fc85cea57466887c3ff9c6481ab (diff)
downloadsamba-5e09611acf02bff78647608274fb4a544c4f51a6.tar.gz
samba-5e09611acf02bff78647608274fb4a544c4f51a6.tar.xz
samba-5e09611acf02bff78647608274fb4a544c4f51a6.zip
Fixes to periodically scan printing.tdb in idle time and occasionally
on exit. Needed to fix printing.tdb from groving to 300Mb+ if being driven by smbclient clients that never ask for status... (effective DOS attack :-). Jeremy.
Diffstat (limited to 'source/smbd/process.c')
-rw-r--r--source/smbd/process.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/source/smbd/process.c b/source/smbd/process.c
index 1599ade12d6..9ed83ec88c5 100644
--- a/source/smbd/process.c
+++ b/source/smbd/process.c
@@ -994,6 +994,12 @@ machine %s in domain %s.\n", global_myname, global_myworkgroup ));
process_pending_change_notify_queue(t);
/*
+ * Ensure the print queue tdb doesn't grow too
+ * big by periodically scanning it.
+ */
+ process_print_queue(t);
+
+ /*
* Now we are root, check if the log files need pruning.
*/
if(need_to_check_log_size())