diff options
author | Luk Claes <luk@debian.org> | 2012-05-19 17:31:50 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2012-05-28 14:49:45 +0200 |
commit | 4f6f4ea93c83fa5154f450e2e43649467e4c2b32 (patch) | |
tree | 5d765e8b1d8bcf9215a4dce43585a69ccfc66819 /source3/lib | |
parent | 987e81b0ee681a25a8e3308169626a2206e3fd26 (diff) | |
download | samba-4f6f4ea93c83fa5154f450e2e43649467e4c2b32.tar.gz samba-4f6f4ea93c83fa5154f450e2e43649467e4c2b32.tar.bz2 samba-4f6f4ea93c83fa5154f450e2e43649467e4c2b32.zip |
s3:libsmb: get rid of cli_state_remote_name
Signed-off-by: Luk Claes <luk@debian.org>
Signed-off-by: Stefan Metzmacher <metze@samba.org>
Diffstat (limited to 'source3/lib')
-rw-r--r-- | source3/lib/netapi/cm.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/source3/lib/netapi/cm.c b/source3/lib/netapi/cm.c index 4dfa6b50a2..36e8731fa9 100644 --- a/source3/lib/netapi/cm.c +++ b/source3/lib/netapi/cm.c @@ -24,6 +24,7 @@ #include "lib/netapi/netapi_private.h" #include "libsmb/libsmb.h" #include "rpc_client/cli_pipe.h" +#include "../libcli/smb/smbXcli_base.h" /******************************************************************** ********************************************************************/ @@ -48,7 +49,7 @@ static struct client_ipc_connection *ipc_cm_find( struct client_ipc_connection *p; for (p = priv_ctx->ipc_connections; p; p = p->next) { - const char *remote_name = cli_state_remote_name(p->cli); + const char *remote_name = smbXcli_conn_remote_name(p->cli->conn); if (strequal(remote_name, server_name)) { return p; @@ -172,7 +173,7 @@ static NTSTATUS pipe_cm_find(struct client_ipc_connection *ipc, return NT_STATUS_PIPE_EMPTY; } - ipc_remote_name = cli_state_remote_name(ipc->cli); + ipc_remote_name = smbXcli_conn_remote_name(ipc->cli->conn); if (strequal(ipc_remote_name, p->pipe->desthost) && ndr_syntax_id_equal(&p->pipe->abstract_syntax, |