DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=27793>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=27793

MAXLINE too small in logresolver

[EMAIL PROTECTED] changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |FIXED



------- Additional Comments From [EMAIL PROTECTED]  2004-03-21 11:18 -------
I just committed this change to 2.1-dev and have proposed it for merging
back to 2.0.50-dev:

Index: support/logresolve.c
===================================================================
RCS file: /home/cvs/httpd-2.0/support/logresolve.c,v
retrieving revision 1.22
diff -u -r1.22 logresolve.c
--- support/logresolve.c        9 Feb 2004 20:40:52 -0000       1.22
+++ support/logresolve.c        21 Mar 2004 11:12:02 -0000
@@ -90,7 +90,9 @@
 
 
 /* maximum line length */
+#ifndef MAXLINE
 #define MAXLINE 1024
+#endif
 
 /* maximum length of a domain name */
 #ifndef MAXDNAME

You can define MAXLINE to whatever you want outside of logresolve.c.  Something
like this should take care of it:

CPPFLAGS="-DMAXLINE=99999" ./configure --other-opts

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to