diff options
author | Volker Lendecke <vl@samba.org> | 2008-04-20 14:05:25 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2008-04-20 14:08:16 +0200 |
commit | b9cc05506273e5ce3398a5912b9c9e5989717480 (patch) | |
tree | f232ff8840eeecac5e855032852f448d27c2db4b /source3/rpc_server | |
parent | 0c17878e2189431fcb7d63c4ddd0f4647ba411b9 (diff) | |
download | samba-b9cc05506273e5ce3398a5912b9c9e5989717480.tar.gz samba-b9cc05506273e5ce3398a5912b9c9e5989717480.tar.bz2 samba-b9cc05506273e5ce3398a5912b9c9e5989717480.zip |
Introduce rpc_pipe_np_smb_conn()
This abstracts away all references to rpc_pipe_client->cli, the only reference
is now in cli_pipe.c.
(This used to be commit c56e1c08cef107ff33a34346ceeca3475a102b19)
Diffstat (limited to 'source3/rpc_server')
-rw-r--r-- | source3/rpc_server/srv_spoolss_nt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/rpc_server/srv_spoolss_nt.c b/source3/rpc_server/srv_spoolss_nt.c index 722ad54951..4c5fcf5341 100644 --- a/source3/rpc_server/srv_spoolss_nt.c +++ b/source3/rpc_server/srv_spoolss_nt.c @@ -164,7 +164,7 @@ static void srv_spoolss_replycloseprinter(int snum, POLICY_HND *handle) /* if it's the last connection, deconnect the IPC$ share */ if (smb_connections==1) { - cli_shutdown( notify_cli_pipe->cli ); + cli_shutdown( rpc_pipe_np_smb_conn(notify_cli_pipe) ); notify_cli_pipe = NULL; /* The above call shuts downn the pipe also. */ messaging_deregister(smbd_messaging_context(), |