diff options
author | Jeremy Allison <jra@samba.org> | 2003-03-01 00:48:09 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2003-03-01 00:48:09 +0000 |
commit | 728da472c2c25afcfc0115e5c6bd78cf6df14ee8 (patch) | |
tree | 01cc2f910459fb79fde6cb04b9d11fa6bc66b585 | |
parent | 3467ed21dd3ec0ae537564eb0219ad86517c5638 (diff) | |
download | samba-728da472c2c25afcfc0115e5c6bd78cf6df14ee8.tar.gz samba-728da472c2c25afcfc0115e5c6bd78cf6df14ee8.tar.bz2 samba-728da472c2c25afcfc0115e5c6bd78cf6df14ee8.zip |
Ensure added jobs increment total_jobs.
Jeremy.
(This used to be commit d29c6853dd0c43825b3775020076f34faa5cd329)
-rw-r--r-- | source3/printing/printing.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/source3/printing/printing.c b/source3/printing/printing.c index c9612ab3a9..26ea52e35a 100644 --- a/source3/printing/printing.c +++ b/source3/printing/printing.c @@ -916,6 +916,9 @@ static void print_queue_update(int snum) SAFE_FREE(tstruct.queue); + DEBUG(10,("print_queue_update: printer %s INFO/total_jobs = %d\n", + printer_name, tstruct.total_jobs )); + tdb_store_int32(pdb->tdb, "INFO/total_jobs", tstruct.total_jobs); get_queue_status(snum, &old_status); @@ -1733,6 +1736,9 @@ to open spool file %s.\n", pjob.filename)); pjob_store(snum, jobid, &pjob); + /* Ensure we keep a rough count of the number of total jobs... */ + tdb_change_int32_atomic(pdb->tdb, "INFO/total_jobs", &njobs, 1); + release_print_db(pdb); return jobid; |