From c95a79aae9f67dd476b7f6d1d12ad574b54c15ba Mon Sep 17 00:00:00 2001 From: Andreas Schneider Date: Tue, 4 May 2010 11:37:42 +0200 Subject: s3-spoolss: Added a sharename arg to winreg_update_printer. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Günther Deschner --- source3/rpc_server/srv_spoolss_util.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'source3/rpc_server/srv_spoolss_util.c') diff --git a/source3/rpc_server/srv_spoolss_util.c b/source3/rpc_server/srv_spoolss_util.c index f04e5dec97..3ddf7eb715 100644 --- a/source3/rpc_server/srv_spoolss_util.c +++ b/source3/rpc_server/srv_spoolss_util.c @@ -1536,6 +1536,7 @@ WERROR winreg_create_printer(TALLOC_CTX *mem_ctx, result = winreg_update_printer(tmp_ctx, server_info, + sharename, info2_mask, info2, devmode, @@ -1557,6 +1558,7 @@ done: WERROR winreg_update_printer(TALLOC_CTX *mem_ctx, struct auth_serversupplied_info *server_info, + const char *sharename, uint32_t info2_mask, struct spoolss_SetPrinterInfo2 *info2, struct spoolss_DeviceMode *devmode, @@ -1576,7 +1578,7 @@ WERROR winreg_update_printer(TALLOC_CTX *mem_ctx, return WERR_NOMEM; } - path = winreg_printer_data_keyname(tmp_ctx, info2->sharename); + path = winreg_printer_data_keyname(tmp_ctx, sharename); if (path == NULL) { TALLOC_FREE(tmp_ctx); return WERR_NOMEM; -- cgit