summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2004-04-13 08:58:02 +0000
committerAndrew Bartlett <abartlet@samba.org>2004-04-13 08:58:02 +0000
commitbd52df9090db1d4ccaf6fc1642670e613ab681cf (patch)
treeca68ed74d4a179dc3f26d1fd89e5939138b4c7b8
parent152b66003fddb30d875f4d821c64ad5f7a05a9f8 (diff)
downloadsamba-bd52df9090db1d4ccaf6fc1642670e613ab681cf.tar.gz
r191: Only send the ntlm_auth 'ntlm-server-1' helper client a '.' after the
server had said something (such as an error). Andrew Bartlett
-rw-r--r--source/utils/ntlm_auth.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/source/utils/ntlm_auth.c b/source/utils/ntlm_auth.c
index 9e65040107a..0e763968abf 100644
--- a/source/utils/ntlm_auth.c
+++ b/source/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)