You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by wr...@locus.apache.org on 2000/10/08 08:05:00 UTC

cvs commit: apache-2.0/src/modules/standard mod_autoindex.c

wrowe       00/10/07 23:05:00

  Modified:    src/modules/standard mod_autoindex.c
  Log:
    Missed it... another canonical error fix
  
  Revision  Changes    Path
  1.42      +1 -1      apache-2.0/src/modules/standard/mod_autoindex.c
  
  Index: mod_autoindex.c
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/modules/standard/mod_autoindex.c,v
  retrieving revision 1.41
  retrieving revision 1.42
  diff -u -r1.41 -r1.42
  --- mod_autoindex.c	2000/08/06 06:07:46	1.41
  +++ mod_autoindex.c	2000/10/08 06:05:00	1.42
  @@ -921,7 +921,7 @@
               n = sizeof(char) * IOBUFSIZE;
   	    stat = apr_read(f, buf, &n);
   	}
  -	while (stat != APR_SUCCESS && stat == EINTR);
  +	while (stat != APR_SUCCESS && APR_STATUS_IS_EINTR(stat));
   	if (n == -1 || n == 0) {
   	    break;
   	}