diff options
author | Volker Lendecke <vl@samba.org> | 2010-08-08 14:35:50 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2010-08-08 16:03:25 +0200 |
commit | 7d08c25f989df14131567d055a9c922e27247c14 (patch) | |
tree | 2a6073c732fca44bdfb5eaf73c403c6a9a2fd4a7 /source3/rpc_server | |
parent | 61837197d8e0583d1ced7edd57353a72699495bb (diff) | |
download | samba-7d08c25f989df14131567d055a9c922e27247c14.tar.gz samba-7d08c25f989df14131567d055a9c922e27247c14.tar.bz2 samba-7d08c25f989df14131567d055a9c922e27247c14.zip |
s3: Lift the smbd_messaging_context from nt_printer_publish
Diffstat (limited to 'source3/rpc_server')
-rw-r--r-- | source3/rpc_server/srv_spoolss_nt.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source3/rpc_server/srv_spoolss_nt.c b/source3/rpc_server/srv_spoolss_nt.c index f3f1efcee8..b8a8526eec 100644 --- a/source3/rpc_server/srv_spoolss_nt.c +++ b/source3/rpc_server/srv_spoolss_nt.c @@ -6122,7 +6122,8 @@ static WERROR publish_or_unpublish_printer(struct pipes_struct *p, return WERR_BADFID; } - nt_printer_publish(pinfo2, p->server_info, pinfo2, info7->action); + nt_printer_publish(pinfo2, p->server_info, p->msg_ctx, pinfo2, + info7->action); TALLOC_FREE(pinfo2); return WERR_OK; |