diff options
-rw-r--r-- | source3/utils/ntlm_auth.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/source3/utils/ntlm_auth.c b/source3/utils/ntlm_auth.c index c926d07698..09306adc78 100644 --- a/source3/utils/ntlm_auth.c +++ b/source3/utils/ntlm_auth.c @@ -2166,14 +2166,18 @@ enum { while((opt = poptGetNextOpt(pc)) != -1) { switch (opt) { case OPT_CHALLENGE: +#if 0 /* Mr Bartlett FIX THE BUILD ! */ opt_challenge = strhex_to_data_blob(hex_challenge); +#endif if (opt_challenge.length != 8) { x_fprintf(x_stderr, "hex decode of %s failed!\n", hex_challenge); exit(1); } break; case OPT_LM: +#if 0 /* Mr Bartlett FIX THE BUILD ! */ opt_lm_response = strhex_to_data_blob(hex_lm_response); +#endif if (opt_lm_response.length != 24) { x_fprintf(x_stderr, "hex decode of %s failed!\n", hex_lm_response); exit(1); @@ -2181,7 +2185,9 @@ enum { break; case OPT_NT: +#if 0 /* Mr Bartlett FIX THE BUILD ! */ opt_nt_response = strhex_to_data_blob(hex_nt_response); +#endif if (opt_nt_response.length < 24) { x_fprintf(x_stderr, "hex decode of %s failed!\n", hex_nt_response); exit(1); |