Commit 1ab4bc69 authored by Marc Slemko's avatar Marc Slemko
Browse files

Workaround AIX 3.x compiler bug.

PR: 725
Reviewed by:	Dean Gaudet, Jim Jagielski
Submitted by:
Obtained from:


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3@78463 13f79535-47bb-0310-9956-ffa450edef68
parent 8ce5a02e
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -91,6 +91,9 @@ Changes with Apache 1.2.1

  *) PORT: Support for Maxion/OS SVR4.2 Real Time Unix. [no name given] PR#383

  *) PORT: Workaround for AIX 3.x compiler bug in http_bprintf.c.  
     [Marc Slemko] PR#725

Changes with Apache 1.2

Changes with Apache 1.2b11
+4 −1
Original line number Diff line number Diff line
@@ -289,7 +289,10 @@ int vbprintf(BUFF *bp, const char *format, va_list arg)
		    else
			{
			p = memchr(charPtrArg, '\0', precision);
			buffReqd=(p == NULL) ? precision : p - charPtrArg;
			if (p == NULL)
				buffReqd = precision;
			else
				buffReqd = p - charPtrArg;
			}
		    break;