The following reply was made to PR os-aix/725; it has been noted by GNATS.

From: Marc Slemko <[EMAIL PROTECTED]>
To: Chris Moeller <[EMAIL PROTECTED]>
Subject: Re: os-aix/725: The make process quits after an error in 
Date: Sun, 29 Jun 1997 18:06:02 -0600 (MDT)

 
 
 > On Thu, 12 Jun 1997, Chris Moeller wrote:
 > 
 > >         cc -c    -DAIX -U__STR__   http_bprintf.c                          
 > >  
 >   
 > 
 > > "http_bprintf.c", line 292.65: 1506-025 (S) Operand must be a modifiable 
 > lvalue.
 > > The error code from the last failed command is 1.                          
 > >    
 >      
 
 The below patch should fix it and has been applied to the source tree.
 
 Index: http_bprintf.c
 ===================================================================
 RCS file: /export/home/cvs/apache/src/http_bprintf.c,v
 retrieving revision 1.9
 diff -c -r1.9 http_bprintf.c
 *** http_bprintf.c     1997/06/29 19:19:35     1.9
 --- http_bprintf.c     1997/06/29 21:00:57
 ***************
 *** 286,292 ****
                    else
                        {
                        p = memchr(charPtrArg, '\0', precision);
 !                      buffReqd=(p == NULL) ? precision : p - charPtrArg;
                        }
                    break;
   
 --- 286,295 ----
                    else
                        {
                        p = memchr(charPtrArg, '\0', precision);
 !                      if (p == NULL)
 !                              buffReqd = precision;
 !                      else
 !                              buffReqd = p - charPtrArg;
                        }
                    break;
   
 

Reply via email to