]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Add in a missing \n for the Squid access log format routine.
authoradrian <>
Mon, 2 Oct 2006 08:21:50 +0000 (08:21 +0000)
committeradrian <>
Mon, 2 Oct 2006 08:21:50 +0000 (08:21 +0000)
src/access_log.cc

index f69a0e4bcc7cf79e694bb28b15cf79802cd9b7a1..e1de5cfe8de1ccdae78fe966cfe77791602bfa14 100644 (file)
@@ -1,6 +1,6 @@
 
 /*
- * $Id: access_log.cc,v 1.117 2006/09/30 16:51:41 serassio Exp $
+ * $Id: access_log.cc,v 1.118 2006/10/02 02:21:50 adrian Exp $
  *
  * DEBUG: section 46    Access Log
  * AUTHOR: Duane Wessels
@@ -1310,7 +1310,7 @@ accessLogSquid(AccessLogEntry * al, Logfile * logfile)
         safe_free(ereq);
         safe_free(erep);
     }
-
+    logfilePrintf(logfile, "\n");
     safe_free(user);
 }