pcs         98/01/04 09:03:19

  Modified:    src/main http_log.c
  Log:
  Correct && into a &
  
  Revision  Changes    Path
  1.47      +1 -1      apachen/src/main/http_log.c
  
  Index: http_log.c
  ===================================================================
  RCS file: /export/home/cvs/apachen/src/main/http_log.c,v
  retrieving revision 1.46
  retrieving revision 1.47
  diff -u -r1.46 -r1.47
  --- http_log.c        1998/01/04 16:35:28     1.46
  +++ http_log.c        1998/01/04 17:03:18     1.47
  @@ -317,7 +317,7 @@
       }
       if (!(level & APLOG_NOERRNO)
   #ifdef WIN32
  -     && !(level && APLOG_WIN32ERROR)
  +     && !(level & APLOG_WIN32ERROR)
   #endif
        ) {
        len += ap_snprintf(errstr + len, sizeof(errstr) - len,
  
  
  

Reply via email to