You are viewing a plain text version of this content. The canonical link for it is here.
Posted to apreq-cvs@httpd.apache.org by jo...@apache.org on 2001/11/06 16:33:00 UTC

cvs commit: httpd-apreq/Request Request.xs

joes        01/11/06 07:33:00

  Modified:    Request  Request.xs
  Log:
  Change && to ||, fixes patch 1.20's deMorgan rule bug.
  Spotted by Isaac Goldstand.
  
  Revision  Changes    Path
  1.27      +1 -1      httpd-apreq/Request/Request.xs
  
  Index: Request.xs
  ===================================================================
  RCS file: /home/cvs/httpd-apreq/Request/Request.xs,v
  retrieving revision 1.26
  retrieving revision 1.27
  diff -u -r1.26 -r1.27
  --- Request.xs	2001/08/12 15:59:16	1.26
  +++ Request.xs	2001/11/06 15:33:00	1.27
  @@ -193,7 +193,7 @@
   {
       UploadHook *hook = (UploadHook *)ptr;
   
  -    if (!(upload->fp && ApacheRequest_tmpfile(upload->req, upload))) {
  +    if (!(upload->fp || ApacheRequest_tmpfile(upload->req, upload))) {
           return -1; /* error */
       }