From: Andrew Bartlett Date: Sun, 25 Jul 2004 13:11:39 +0000 (+0000) Subject: r1582: On failure, print the length of the right variable. X-Git-Tag: samba-misc-tags/initial-v3-0-unstable~5951 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5bd6abb54e12aee2031d48bc5b240bb4f127bf5a;p=thirdparty%2Fsamba.git r1582: On failure, print the length of the right variable. Andrew Bartlett --- 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")) {