summaryrefslogtreecommitdiff
path: root/source3/include/printing.h
diff options
context:
space:
mode:
authorDavid Disseldorp <ddiss@samba.org>2012-01-27 12:33:27 +0100
committerDavid Disseldorp <ddiss@samba.org>2012-06-26 16:10:39 +0200
commitdbca645eecfabbd2c43d5b70152bb3001aaef00c (patch)
treee6dbab096c8c760008916b7c6a239d17a8885146 /source3/include/printing.h
parenta66618f40223dfb0ef544169e32bfa074587df29 (diff)
downloadsamba-dbca645eecfabbd2c43d5b70152bb3001aaef00c.tar.gz
samba-dbca645eecfabbd2c43d5b70152bb3001aaef00c.tar.bz2
samba-dbca645eecfabbd2c43d5b70152bb3001aaef00c.zip
s3-printing: rename queue->job sysjob
Print jobs maintain two job identifiers, the jobid allocated by the spoolss layer (pj->jobid), and the job identifier defined by the printing backend (pj->sysjob). Printer job queues currently only contain a single job identifier variable (queue->job), the variable is sometimes representative of the spoolss layer job identifier, and more often representative of the printing backend id. This change renames the queue job identifier from queue->job to queue->sysjob, in preparation for a change to only store the printing backend identifier.
Diffstat (limited to 'source3/include/printing.h')
-rw-r--r--source3/include/printing.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/include/printing.h b/source3/include/printing.h
index aa28b78fdd..2b16d04c88 100644
--- a/source3/include/printing.h
+++ b/source3/include/printing.h
@@ -47,7 +47,7 @@ enum {
};
typedef struct _print_queue_struct {
- int job; /* normally the UNIX jobid -- see note in
+ int sysjob; /* normally the UNIX jobid -- see note in
printing.c:traverse_fn_delete() */
int size;
int page_count;