diff options
author | Volker Lendecke <vl@samba.org> | 2010-08-08 14:42:47 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2010-08-08 16:03:26 +0200 |
commit | 8dcbeecd6d0aac40da23aef8a4e126faa1bf43e2 (patch) | |
tree | a42cd77e6b02f990f1e5182d58849b224c7a0a09 /source3/include | |
parent | 4a514d2261b7528696f96bb29717fb7a20708869 (diff) | |
download | samba-8dcbeecd6d0aac40da23aef8a4e126faa1bf43e2.tar.gz samba-8dcbeecd6d0aac40da23aef8a4e126faa1bf43e2.tar.bz2 samba-8dcbeecd6d0aac40da23aef8a4e126faa1bf43e2.zip |
s3: Lift the smbd_messaging_context from print_job_delete
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/printing.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source3/include/printing.h b/source3/include/printing.h index eb277c991a..f43e4c029e 100644 --- a/source3/include/printing.h +++ b/source3/include/printing.h @@ -125,7 +125,8 @@ struct spoolss_DeviceMode *print_job_devmode(const char* sharename, uint32 jobid bool print_job_set_name(const char *sharename, uint32 jobid, const char *name); bool print_job_get_name(TALLOC_CTX *mem_ctx, const char *sharename, uint32_t jobid, char **name); WERROR print_job_delete(struct auth_serversupplied_info *server_info, - int snum, uint32 jobid); + struct messaging_context *msg_ctx, + int snum, uint32_t jobid); bool print_job_pause(struct auth_serversupplied_info *server_info, int snum, uint32 jobid, WERROR *errcode); bool print_job_resume(struct auth_serversupplied_info *server_info, int snum, |