marc        98/09/06 13:03:36

  Modified:    src/main util.c
  Log:
  fix typo hidden behind DEFINE.
  
  PR: 2945
  Submitted by: Larry Lipsmeyer <[EMAIL PROTECTED]>
  
  Revision  Changes    Path
  1.132     +2 -1      apache-1.3/src/main/util.c
  
  Index: util.c
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/src/main/util.c,v
  retrieving revision 1.131
  retrieving revision 1.132
  diff -u -r1.131 -r1.132
  --- util.c    1998/09/03 17:09:30     1.131
  +++ util.c    1998/09/06 20:03:35     1.132
  @@ -701,7 +701,8 @@
   API_EXPORT(int) ap_cfg_closefile(configfile_t *cfp)
   {
   #ifdef DEBUG
  -    ap_log_error(APLOG_MARK, APLOG_DEBUG|APLOG_NOERRNO, NULL, "Done with 
config file %s", fp->name);
  +    ap_log_error(APLOG_MARK, APLOG_DEBUG|APLOG_NOERRNO, NULL, 
  +        "Done with config file %s", cfp->name);
   #endif
       return (cfp->close == NULL) ? 0 : cfp->close(cfp->param);
   }
  
  
  

Reply via email to