summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2000-10-11 02:04:46 +0000
committerJeremy Allison <jra@samba.org>2000-10-11 02:04:46 +0000
commite9270d61fc8ddaecd8eb1d2c0a9ce8eba13b1194 (patch)
treee46d1fce7670af028e2b3cb0ed858b6c085b785d /source3
parentcdb71ca5181aa1e06bebe2fffb02dc39de83645e (diff)
downloadsamba-e9270d61fc8ddaecd8eb1d2c0a9ce8eba13b1194.tar.gz
samba-e9270d61fc8ddaecd8eb1d2c0a9ce8eba13b1194.tar.bz2
samba-e9270d61fc8ddaecd8eb1d2c0a9ce8eba13b1194.zip
Remove lpq as root fix - do this in print_job_start instead
as part of print queue length processing. Jeremy. (This used to be commit e85a0fadd8dcf608822819f00f15569713518806)
Diffstat (limited to 'source3')
-rw-r--r--source3/include/proto.h1
-rw-r--r--source3/printing/printing.c28
-rw-r--r--source3/smbd/process.c6
-rw-r--r--source3/smbd/server.c4
4 files changed, 0 insertions, 39 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h
index 0ea92c35aa..6911c43be7 100644
--- a/source3/include/proto.h
+++ b/source3/include/proto.h
@@ -1787,7 +1787,6 @@ int print_queue_snum(char *qname);
BOOL print_queue_pause(struct current_user *user, int snum, int *errcode);
BOOL print_queue_resume(struct current_user *user, int snum, int *errcode);
BOOL print_queue_purge(struct current_user *user, int snum, int *errcode);
-void process_print_queue(time_t t);
#endif
/*The following definitions come from profile/profile.c */
diff --git a/source3/printing/printing.c b/source3/printing/printing.c
index 486ef5d2c7..d71ea25d0d 100644
--- a/source3/printing/printing.c
+++ b/source3/printing/printing.c
@@ -1024,32 +1024,4 @@ BOOL print_queue_purge(struct current_user *user, int snum, int *errcode)
return True;
}
-
-/****************************************************************************
- Periodically run a status on all the queues to ensure the tdb doesn't grow.
- Note that this will have no effect if the client is doing its own status
- queries. This code is here to clean up jobs submitted by non-Windows printer
- clients (eg. smbclient) that never do a status check.
-****************************************************************************/
-
-void process_print_queue(time_t t)
-{
- static time_t last_check_time;
- int services = lp_numservices();
- print_queue_struct *queue;
- print_status_struct status;
- int snum;
-
- if ((t != (time_t)-1) && ((t - last_check_time) < lp_lpqcachetime()))
- return;
-
- last_check_time = t;
-
- for (snum = 0; snum < services; snum++) {
- if (lp_snum_ok(snum) && lp_print_ok(snum) && lp_browseable(snum)) {
- (void)print_queue_status(snum, &queue,&status);
- safe_free(queue);
- }
- }
-}
#undef OLD_NTDOMAIN
diff --git a/source3/smbd/process.c b/source3/smbd/process.c
index 9ed83ec88c..1599ade12d 100644
--- a/source3/smbd/process.c
+++ b/source3/smbd/process.c
@@ -994,12 +994,6 @@ 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())
diff --git a/source3/smbd/server.c b/source3/smbd/server.c
index 22a95fdd18..4442a1f71f 100644
--- a/source3/smbd/server.c
+++ b/source3/smbd/server.c
@@ -422,10 +422,6 @@ void exit_server(char *reason)
respond_to_all_remaining_local_messages();
- /* Don't do this on every exit... */
- if (sys_random() % 10)
- process_print_queue(time(NULL));
-
#ifdef WITH_DFS
if (dcelogin_atmost_once) {
dfs_unlogin();