summaryrefslogtreecommitdiff
path: root/source3/auth
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2002-05-24 05:14:16 +0000
committerAndrew Bartlett <abartlet@samba.org>2002-05-24 05:14:16 +0000
commit9c3d5d6fd0dd9e2e62a33d0822a72d5209fe3ffb (patch)
tree573cb8949102074a22f33b4c2706f7947348278e /source3/auth
parent40669777a5f74617fdd80dea3ff5a45a9e9a1aa4 (diff)
downloadsamba-9c3d5d6fd0dd9e2e62a33d0822a72d5209fe3ffb.tar.gz
samba-9c3d5d6fd0dd9e2e62a33d0822a72d5209fe3ffb.tar.bz2
samba-9c3d5d6fd0dd9e2e62a33d0822a72d5209fe3ffb.zip
Remove the password length paramater from cli_full_connection - it really
didn't make any sense, and its was always just strlen(password) anyway. This fixes it to be strlen(password)+1 Andrew Bartlett (This used to be commit c205b18bd6b9b69200ff3db55f2c641631d4ab40)
Diffstat (limited to 'source3/auth')
-rw-r--r--source3/auth/auth_domain.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/auth/auth_domain.c b/source3/auth/auth_domain.c
index 91c111b557..69d922db12 100644
--- a/source3/auth/auth_domain.c
+++ b/source3/auth/auth_domain.c
@@ -127,7 +127,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", "", "", "", 0);
+ &dest_ip, 0, "IPC$", "IPC", "", "", "");
if (!NT_STATUS_IS_OK(result)) {
release_server_mutex();