summaryrefslogtreecommitdiff
path: root/source3/utils/ntlm_auth.c
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2004-04-06 21:13:53 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 10:51:08 -0500
commit0bfc5729a50aa6231a1f80f4e2aefa628abc9d1e (patch)
tree2d7ac75fe66d6d8b92bcb9dbeefc7636952bef9d /source3/utils/ntlm_auth.c
parent50ac33f5825015b723ddf60ef170d22e93623463 (diff)
downloadsamba-0bfc5729a50aa6231a1f80f4e2aefa628abc9d1e.tar.gz
samba-0bfc5729a50aa6231a1f80f4e2aefa628abc9d1e.tar.bz2
samba-0bfc5729a50aa6231a1f80f4e2aefa628abc9d1e.zip
r87: Fix the build that Andrew Bartlett broke. Andrew - don't check *ANYTHING* in
unless you have done a make clean; make. Jeremy. (This used to be commit 09d82a0bef2dd5759e5430c4faea413b5a64ac11)
Diffstat (limited to 'source3/utils/ntlm_auth.c')
-rw-r--r--source3/utils/ntlm_auth.c6
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);