From 5bd6abb54e12aee2031d48bc5b240bb4f127bf5a Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Sun, 25 Jul 2004 13:11:39 +0000 Subject: r1582: On failure, print the length of the right variable. Andrew Bartlett --- source/utils/ntlm_auth.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/utils/ntlm_auth.c b/source/utils/ntlm_auth.c index fd8424065c8..4d369630ab3 100644 --- a/source/utils/ntlm_auth.c +++ b/source/utils/ntlm_auth.c @@ -1557,7 +1557,7 @@ static void manage_ntlm_server_1_request(enum stdio_helper_mode stdio_helper_mod if (nt_response.length < 24) { x_fprintf(x_stdout, "Error: hex decode of %s failed! (only got %d bytes, needed at least 24)\n.\n", parameter, - (int)opt_nt_response.length); + (int)nt_response.length); nt_response = data_blob(NULL, 0); } } else if (strequal(request, "LANMAN-Response")) { -- cgit