Return-Path: Delivered-To: apache-cvs-archive@hyperreal.org Received: (qmail 14577 invoked by uid 6000); 6 Sep 1998 20:03:38 -0000 Received: (qmail 14571 invoked by alias); 6 Sep 1998 20:03:37 -0000 Delivered-To: apache-1.3-cvs@hyperreal.org Received: (qmail 14569 invoked by uid 149); 6 Sep 1998 20:03:36 -0000 Date: 6 Sep 1998 20:03:36 -0000 Message-ID: <19980906200336.14568.qmail@hyperreal.org> From: marc@hyperreal.org To: apache-1.3-cvs@hyperreal.org Subject: cvs commit: apache-1.3/src/main util.c Sender: apache-cvs-owner@apache.org Precedence: bulk Reply-To: new-httpd@apache.org marc 98/09/06 13:03:36 Modified: src/main util.c Log: fix typo hidden behind DEFINE. PR: 2945 Submitted by: Larry Lipsmeyer 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); }