diff options
author | Günther Deschner <gd@samba.org> | 2005-08-04 23:20:48 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 11:00:24 -0500 |
commit | 8ea8a78abc233ecbee2972e1feff9d16715a3b8f (patch) | |
tree | 832647d7ff166088a7104e0b7a1224556ad5c2f6 /source3/rpcclient | |
parent | 242f8041fb4a288583b9552ff266a80af1abbb37 (diff) | |
download | samba-8ea8a78abc233ecbee2972e1feff9d16715a3b8f.tar.gz samba-8ea8a78abc233ecbee2972e1feff9d16715a3b8f.tar.bz2 samba-8ea8a78abc233ecbee2972e1feff9d16715a3b8f.zip |
r9076: fix two other issues invented along the
cli_spoolss_enumprinterkey-changes.
Guenther
(This used to be commit db8fce2e05bf1981866a7737703ad414ea91febc)
Diffstat (limited to 'source3/rpcclient')
-rw-r--r-- | source3/rpcclient/cmd_spoolss.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/rpcclient/cmd_spoolss.c b/source3/rpcclient/cmd_spoolss.c index 7591053f54..864722ffdc 100644 --- a/source3/rpcclient/cmd_spoolss.c +++ b/source3/rpcclient/cmd_spoolss.c @@ -2296,7 +2296,7 @@ static WERROR cmd_spoolss_enum_printerkey( struct cli_state *cli, /* Enumerate subkeys */ - result = cli_spoolss_enumprinterkey(cli, mem_ctx, &hnd, keyname, NULL, NULL); + result = cli_spoolss_enumprinterkey(cli, mem_ctx, &hnd, keyname, &keylist, NULL); if (!W_ERROR_IS_OK(result)) goto done; |