diff options
author | Volker Lendecke <vl@samba.org> | 2008-04-07 10:18:36 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2008-04-07 10:20:32 +0200 |
commit | aa41d74843dd6532c300da682472787759b6d82d (patch) | |
tree | 084a5020e800385821ed65c88ca8301a673f425f | |
parent | 74325d79ad908ba8802e499354d9a405d93d0ca7 (diff) | |
download | samba-aa41d74843dd6532c300da682472787759b6d82d.tar.gz samba-aa41d74843dd6532c300da682472787759b6d82d.tar.bz2 samba-aa41d74843dd6532c300da682472787759b6d82d.zip |
Fix a misleading debug message
(This used to be commit 494b32197f0872b115f0cd1a35421d00a89360a6)
-rw-r--r-- | source3/libsmb/cliconnect.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/source3/libsmb/cliconnect.c b/source3/libsmb/cliconnect.c index 4573f39eb3..b76814e45f 100644 --- a/source3/libsmb/cliconnect.c +++ b/source3/libsmb/cliconnect.c @@ -1093,8 +1093,9 @@ bool cli_send_tconX(struct cli_state *cli, if ((cli->sec_mode & NEGOTIATE_SECURITY_CHALLENGE_RESPONSE) && *pass && passlen != 24) { if (!lp_client_lanman_auth()) { - DEBUG(1, ("Server requested LANMAN password (share-level security) but 'client use lanman auth'" - " is disabled\n")); + DEBUG(1, ("Server requested LANMAN password " + "(share-level security) but " + "'client lanman auth' is disabled\n")); return False; } |