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 2000/01/21 20:13:28 UTC

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

stoddard    00/01/21 11:13:27

  Modified:    src/main util_uri.c
  Log:
  Let ap_config.h figure out whether netdb.h should be included or not.
  This fixes a compile problem on platforms that do not have netdb.h.
  
  Revision  Changes    Path
  1.5       +1 -1      apache-2.0/src/main/util_uri.c
  
  Index: util_uri.c
  ===================================================================
  RCS file: /export/home/cvs/apache-2.0/src/main/util_uri.c,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- util_uri.c	2000/01/19 01:15:15	1.4
  +++ util_uri.c	2000/01/21 19:13:24	1.5
  @@ -63,7 +63,7 @@
   #include "http_log.h"
   #include "util_uri.h"
   #include <string.h>
  -#include <netdb.h>
  +#include "ap_config.h"
   
   /* Some WWW schemes and their default ports; this is basically /etc/services */
   /* This will become global when the protocol abstraction comes */