diff options
author | Gerald Carter <jerry@samba.org> | 2004-01-14 20:57:31 +0000 |
---|---|---|
committer | Gerald Carter <jerry@samba.org> | 2004-01-14 20:57:31 +0000 |
commit | 74aa29bd9ecf9bf74f04b36d8e0e0eb2080793d9 (patch) | |
tree | 31bc3b7c4bc3034a77f7541abc577cd583c8a496 /source3/include | |
parent | fdac06716d063e14851a8d947a16362fbf521f73 (diff) | |
download | samba-74aa29bd9ecf9bf74f04b36d8e0e0eb2080793d9.tar.gz samba-74aa29bd9ecf9bf74f04b36d8e0e0eb2080793d9.tar.bz2 samba-74aa29bd9ecf9bf74f04b36d8e0e0eb2080793d9.zip |
bug 770; correct fix this time; Make sure that we send the SMBjobid for unix jobs back to the client. Allows windows client to remove print jobs submitted from lpr
(This used to be commit 6a7f9ebccd6a40455cb5446551f3d68ea9a7a824)
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/smb.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source3/include/smb.h b/source3/include/smb.h index bef6bef691..ea39206f47 100644 --- a/source3/include/smb.h +++ b/source3/include/smb.h @@ -531,7 +531,8 @@ enum {LPQ_QUEUED=0,LPQ_PAUSED,LPQ_SPOOLING,LPQ_PRINTING,LPQ_ERROR,LPQ_DELETING, typedef struct _print_queue_struct { - int job; + int job; /* normally the SMB jobid -- see note in + printing.c:traverse_fn_delete() */ int size; int page_count; int status; |