diff options
author | Gregor Beck <gbeck@sernet.de> | 2013-09-13 11:12:25 +0200 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2013-10-17 08:48:48 +1300 |
commit | a9331e482c0120d70386edb69d924b1c77fa28c7 (patch) | |
tree | 87027c8349edaaec63e8ea9a4b7cb6cf295cad57 /source3 | |
parent | 7f863642dbb5d88361bc937d80ffd7ea8e771e84 (diff) | |
download | samba-a9331e482c0120d70386edb69d924b1c77fa28c7.tar.gz samba-a9331e482c0120d70386edb69d924b1c77fa28c7.tar.bz2 samba-a9331e482c0120d70386edb69d924b1c77fa28c7.zip |
s3:lib/netapi: do not use rpc_pipe_np_smb_conn()
Signed-off-by: Gregor Beck <gbeck@sernet.de>
Reviewed-by: Stefan Metzmacher <metze@samba.org>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Diffstat (limited to 'source3')
-rw-r--r-- | source3/lib/netapi/cm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/netapi/cm.c b/source3/lib/netapi/cm.c index bb5d6b234a..dbb6b6f02d 100644 --- a/source3/lib/netapi/cm.c +++ b/source3/lib/netapi/cm.c @@ -169,7 +169,7 @@ static NTSTATUS pipe_cm_find(struct client_ipc_connection *ipc, for (p = ipc->pipe_connections; p; p = p->next) { const char *ipc_remote_name; - if (!rpc_pipe_np_smb_conn(p->pipe)) { + if (!rpccli_is_connected(p->pipe)) { return NT_STATUS_PIPE_EMPTY; } |