]> granicus.if.org Git - apache/commitdiff
logresolve: Allow size of log line buffer to be overridden at
authorJeff Trawick <trawick@apache.org>
Sun, 21 Mar 2004 11:13:13 +0000 (11:13 +0000)
committerJeff Trawick <trawick@apache.org>
Sun, 21 Mar 2004 11:13:13 +0000 (11:13 +0000)
build time (MAXLINE).

PR:          27793

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@103060 13f79535-47bb-0310-9956-ffa450edef68

CHANGES
support/logresolve.c

diff --git a/CHANGES b/CHANGES
index 1e947c0bfdf89f1ad5e6cc9952814b1633bafd3d..4f3eac71ae95515351b67fdcebcbb7817aa20847 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -2,6 +2,9 @@ Changes with Apache 2.1.0-dev
 
   [Remove entries to the current 2.0 section below, when backported]
 
+  *) logresolve: Allow size of log line buffer to be overridden at
+     build time (MAXLINE).  PR 27793.  [Jeff Trawick]
+
   *) Fix crash when Apache was started with no Listen directives.
      [Michael Corcoran <mcorcoran warpsolutions.com>]
 
index 73d5a4cfdcc2ef9b5555d24f89fdc96e8ae98893..024371132c9ca28d3bdadaa3abef8fe8d6d98be8 100644 (file)
@@ -90,7 +90,9 @@ static void stats(FILE *output);
 
 
 /* maximum line length */
+#ifndef MAXLINE
 #define MAXLINE 1024
+#endif
 
 /* maximum length of a domain name */
 #ifndef MAXDNAME