r87: Fix the build that Andrew Bartlett broke. Andrew - don't check *ANYTHING* in
authorJeremy Allison <jra@samba.org>
Tue, 6 Apr 2004 21:13:53 +0000 (21:13 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 15:51:08 +0000 (10:51 -0500)
unless you have done a make clean; make.
Jeremy.

source/utils/ntlm_auth.c

index c926d07698021bc09ac89df9628eab94a0f33f68..09306adc78ea1dcbf9712328eed73ba335badd35 100644 (file)
@@ -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);