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
*) 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
else
{
p = memchr(charPtrArg, '\0', precision);
- buffReqd=(p == NULL) ? precision : p - charPtrArg;
+ if (p == NULL)
+ buffReqd = precision;
+ else
+ buffReqd = p - charPtrArg;
}
break;