summaryrefslogtreecommitdiff
path: root/source3/smbd
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/smbd
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/smbd')
-rw-r--r--source3/smbd/change_trust_pw.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/change_trust_pw.c b/source3/smbd/change_trust_pw.c
index 0d80d5718f..f81396dce5 100644
--- a/source3/smbd/change_trust_pw.c
+++ b/source3/smbd/change_trust_pw.c
@@ -56,7 +56,7 @@ static NTSTATUS modify_trust_password( char *domain, char *remote_machine,
&dest_ip, 0,
"IPC$", "IPC",
"", "",
- "", 0))) {
+ ""))) {
DEBUG(0,("modify_trust_password: Connection to %s failed!\n", remote_machine));
return NT_STATUS_UNSUCCESSFUL;
}