diff options
author | Andrew Bartlett <abartlet@samba.org> | 2004-04-13 08:58:02 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 10:51:12 -0500 |
commit | f4b35be4dd4c5f40c64056cf84af17f334efa68d (patch) | |
tree | 7ff19b84b8940a3f63e97ddff9605752f6f72c39 /source3 | |
parent | 4dad0782561c063a3b1c477ef029d2ba606bb243 (diff) | |
download | samba-f4b35be4dd4c5f40c64056cf84af17f334efa68d.tar.gz samba-f4b35be4dd4c5f40c64056cf84af17f334efa68d.tar.bz2 samba-f4b35be4dd4c5f40c64056cf84af17f334efa68d.zip |
r191: Only send the ntlm_auth 'ntlm-server-1' helper client a '.' after the
server had said something (such as an error).
Andrew Bartlett
(This used to be commit c05016a2f750960c40387c1d6aba9f6841f66a3b)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/utils/ntlm_auth.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/source3/utils/ntlm_auth.c b/source3/utils/ntlm_auth.c index 9e65040107..0e763968ab 100644 --- a/source3/utils/ntlm_auth.c +++ b/source3/utils/ntlm_auth.c @@ -1576,9 +1576,8 @@ static void manage_ntlm_server_1_request(enum stdio_helper_mode stdio_helper_mod } else if (strequal(request, "Request-LanMan-Session-Key")) { ntlm_server_1_lm_session_key = strequal(parameter, "Yes"); } else { - x_fprintf(x_stdout, "Error: Unknown request %s\n", request); + x_fprintf(x_stdout, "Error: Unknown request %s\n.\n", request); } - x_fprintf(x_stdout, ".\n"); } static void manage_squid_request(enum stdio_helper_mode helper_mode, stdio_helper_function fn) |