From a9331e482c0120d70386edb69d924b1c77fa28c7 Mon Sep 17 00:00:00 2001 From: Gregor Beck Date: Fri, 13 Sep 2013 11:12:25 +0200 Subject: [PATCH] s3:lib/netapi: do not use rpc_pipe_np_smb_conn() Signed-off-by: Gregor Beck Reviewed-by: Stefan Metzmacher Reviewed-by: Andrew Bartlett --- source3/lib/netapi/cm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.34.1