diff -c2 -r ./src/main/http_protocol.c ../../BUILD/apache_1.3.1/src/main/http_protocol.c
*** ./src/main/http_protocol.c	Wed Jul  8 12:47:05 1998
--- ../../BUILD/apache_1.3.1/src/main/http_protocol.c	Fri Sep 11 13:09:40 1998
***************
*** 901,905 ****
      else
          ap_table_setn(r->err_headers_out,
!                   r->proxyreq ? "Proxy-Authenticate" : "WWW-Authenticate",
                    ap_pstrcat(r->pool, "Basic realm=\"", ap_auth_name(r), "\"",
                            NULL));
--- 901,908 ----
      else
          ap_table_setn(r->err_headers_out,
! #if 0
!                   r->proxyreq ? "Proxy-Authenticate" :
! #endif
! 		 "WWW-Authenticate",
                    ap_pstrcat(r->pool, "Basic realm=\"", ap_auth_name(r), "\"",
                            NULL));
***************
*** 909,913 ****
  {
      ap_table_setn(r->err_headers_out,
! 	    r->proxyreq ? "Proxy-Authenticate" : "WWW-Authenticate",
  	    ap_psprintf(r->pool, "Digest realm=\"%s\", nonce=\"%lu\"",
  		ap_auth_name(r), r->request_time));
--- 912,919 ----
  {
      ap_table_setn(r->err_headers_out,
! #if 0
! 	    r->proxyreq ? "Proxy-Authenticate" :
! #endif
! 		"WWW-Authenticate",
  	    ap_psprintf(r->pool, "Digest realm=\"%s\", nonce=\"%lu\"",
  		ap_auth_name(r), r->request_time));
***************
*** 917,922 ****
  {
      const char *auth_line = ap_table_get(r->headers_in,
                                        r->proxyreq ? "Proxy-Authorization"
!                                                   : "Authorization");
      const char *t;
  
--- 923,931 ----
  {
      const char *auth_line = ap_table_get(r->headers_in,
+ #if 0
                                        r->proxyreq ? "Proxy-Authorization"
!                                                   :
! #endif
! 		"Authorization");
      const char *t;
  
*** ./src/main/http_request.c	Wed Jul  1 16:19:54 1998
--- ../../BUILD/apache_1.3.1/src/main/http_request.c	Fri Sep 11 10:16:53 1998
***************
*** 906,909 ****
--- 906,910 ----
      r->status = type;
  
+ #if 0
      /*
       * This test is done here so that none of the auth modules needs to know
***************
*** 914,917 ****
--- 915,919 ----
          r->status = HTTP_PROXY_AUTHENTICATION_REQUIRED;
      }
+ #endif
  
      /*
