diff options
Diffstat (limited to 'source3/rpcclient/cmd_spoolss.c')
-rw-r--r-- | source3/rpcclient/cmd_spoolss.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/source3/rpcclient/cmd_spoolss.c b/source3/rpcclient/cmd_spoolss.c index 93c2a1d3eb..c3fd463271 100644 --- a/source3/rpcclient/cmd_spoolss.c +++ b/source3/rpcclient/cmd_spoolss.c @@ -2593,7 +2593,7 @@ static WERROR cmd_spoolss_printercmp(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx, int argc, const char **argv) { - const char *printername = argv[1]; + const char *printername; char *printername_path = NULL; struct cli_state *cli_server2 = NULL; struct rpc_pipe_client *cli2 = NULL; @@ -2606,6 +2606,8 @@ static WERROR cmd_spoolss_printercmp(struct rpc_pipe_client *cli, return WERR_OK; } + printername = argv[1]; + /* first get the connection to the remote server */ nt_status = cli_full_connection(&cli_server2, global_myname(), argv[2], |