You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by st...@hyperreal.org on 1999/12/21 15:45:54 UTC

cvs commit: apache-2.0/src/main http_vhost.c

stoddard    99/12/21 06:45:54

  Modified:    src/main http_vhost.c
  Log:
  Fix compile break introduced to Apache 2.0 by the mass vhosting security fix.
  
  Revision  Changes    Path
  1.11      +1 -1      apache-2.0/src/main/http_vhost.c
  
  Index: http_vhost.c
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/main/http_vhost.c,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- http_vhost.c	1999/12/21 11:33:23	1.10
  +++ http_vhost.c	1999/12/21 14:45:53	1.11
  @@ -700,7 +700,7 @@
   
   bad:
       r->status = HTTP_BAD_REQUEST;
  -    ap_log_rerror(APLOG_MARK, APLOG_NOERRNO|APLOG_ERR, r,
  +    ap_log_rerror(APLOG_MARK, APLOG_NOERRNO|APLOG_ERR, 0, r,
   		  "Client sent malformed Host header");
       return;
   }