diff options
author | Andrew Tridgell <tridge@samba.org> | 2009-03-26 22:10:32 +1100 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2009-03-26 22:10:32 +1100 |
commit | 7eb7f423d048e869a19d560ab0d1ba3b51b62fa9 (patch) | |
tree | 18cb17db10e10a8d0f27d5a8e48ada2dfc16fae7 /source3/lib/netapi/cm.c | |
parent | 3f37342bc0e7c26b6a61490706fe8cec3e6d491e (diff) | |
parent | 56d74b62126083dd7e2a60d1b48b03e1b1798c90 (diff) | |
download | samba-7eb7f423d048e869a19d560ab0d1ba3b51b62fa9.tar.gz samba-7eb7f423d048e869a19d560ab0d1ba3b51b62fa9.tar.bz2 samba-7eb7f423d048e869a19d560ab0d1ba3b51b62fa9.zip |
Merge branch 'master' of ssh://git.samba.org/data/git/samba
Diffstat (limited to 'source3/lib/netapi/cm.c')
-rw-r--r-- | source3/lib/netapi/cm.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/source3/lib/netapi/cm.c b/source3/lib/netapi/cm.c index b676ae63dd..d28b2b2126 100644 --- a/source3/lib/netapi/cm.c +++ b/source3/lib/netapi/cm.c @@ -57,6 +57,11 @@ static WERROR libnetapi_open_ipc_connection(struct libnetapi_ctx *ctx, false, false, PROTOCOL_NT1, 0, 0x20); + if (cli_ipc) { + cli_set_username(cli_ipc, ctx->username); + cli_set_password(cli_ipc, ctx->password); + cli_set_domain(cli_ipc, ctx->workgroup); + } TALLOC_FREE(auth_info); if (!cli_ipc) { |