diff options
author | Andrew Bartlett <abartlet@samba.org> | 2004-07-25 13:11:39 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 10:52:15 -0500 |
commit | 5bd6abb54e12aee2031d48bc5b240bb4f127bf5a (patch) | |
tree | 5d366ca14eed9e653725143e46d0ec4c1124ec9c /source/utils | |
parent | 554a9132872187077a9c00abb18b9d809c59b7f1 (diff) | |
download | samba-5bd6abb54e12aee2031d48bc5b240bb4f127bf5a.tar.gz samba-5bd6abb54e12aee2031d48bc5b240bb4f127bf5a.tar.xz samba-5bd6abb54e12aee2031d48bc5b240bb4f127bf5a.zip |
r1582: On failure, print the length of the right variable.
Andrew Bartlett
Diffstat (limited to 'source/utils')
-rw-r--r-- | source/utils/ntlm_auth.c | 2 |
1 files changed, 1 insertions, 1 deletions
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")) { |