diff options
author | Andrew Bartlett <abartlet@samba.org> | 2002-06-25 08:57:24 +0000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2002-06-25 08:57:24 +0000 |
commit | 07465761137adf756d771fa1f8592c294488e779 (patch) | |
tree | 19dd710228d65ace7862e07735f56072ed5eccc9 /source3/auth | |
parent | e3958c21050be094c1aaa4030e54eb7cee74a6f9 (diff) | |
download | samba-07465761137adf756d771fa1f8592c294488e779.tar.gz samba-07465761137adf756d771fa1f8592c294488e779.tar.bz2 samba-07465761137adf756d771fa1f8592c294488e779.zip |
Update cli_full_connection() to take a 'flags' paramater, and try to get a
few more places to use it.
Andrew Bartlett
(This used to be commit 23689b0746d5ab030d8693abf71dd2e80ec1d7c7)
Diffstat (limited to 'source3/auth')
-rw-r--r-- | source3/auth/auth_domain.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/auth/auth_domain.c b/source3/auth/auth_domain.c index ee486d3f30..9997507757 100644 --- a/source3/auth/auth_domain.c +++ b/source3/auth/auth_domain.c @@ -102,7 +102,7 @@ static NTSTATUS connect_to_domain_password_server(struct cli_state **cli, /* Attempt connection */ result = cli_full_connection(cli, global_myname, server, - &dest_ip, 0, "IPC$", "IPC", "", "", ""); + &dest_ip, 0, "IPC$", "IPC", "", "", "", 0); if (!NT_STATUS_IS_OK(result)) { release_server_mutex(); |