You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by tr...@locus.apache.org on 2000/04/05 04:01:09 UTC

cvs commit: apache-2.0/src/include http_log.h

trawick     00/04/04 19:01:09

  Modified:    src/include http_log.h
  Log:
  if HAVE_SYSLOG is defined but LOG_PRIMASK isn't, define LOG_PRIMASK to
  the standard value
  
  Revision  Changes    Path
  1.14      +4 -0      apache-2.0/src/include/http_log.h
  
  Index: http_log.h
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/include/http_log.h,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -r1.13 -r1.14
  --- http_log.h	2000/03/31 07:18:58	1.13
  +++ http_log.h	2000/04/05 02:01:09	1.14
  @@ -68,6 +68,10 @@
   #ifdef HAVE_SYSLOG
   #include <syslog.h>
   
  +#ifndef LOG_PRIMASK
  +#define LOG_PRIMASK 7
  +#endif
  +
   #define APLOG_EMERG     LOG_EMERG     /* system is unusable */
   #define APLOG_ALERT     LOG_ALERT     /* action must be taken immediately */
   #define APLOG_CRIT      LOG_CRIT      /* critical conditions */