You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by wr...@apache.org on 2001/06/17 21:06:15 UTC

cvs commit: apr/file_io/win32 filestat.c

wrowe       01/06/17 12:06:15

  Modified:    file_io/win32 filestat.c
  Log:
    That is the _ugliest_ bug I've ever committed :-)
  
  Revision  Changes    Path
  1.52      +1 -1      apr/file_io/win32/filestat.c
  
  Index: filestat.c
  ===================================================================
  RCS file: /home/cvs/apr/file_io/win32/filestat.c,v
  retrieving revision 1.51
  retrieving revision 1.52
  diff -u -r1.51 -r1.52
  --- filestat.c	2001/05/16 03:46:32	1.51
  +++ filestat.c	2001/06/17 19:06:14	1.52
  @@ -553,5 +553,5 @@
   APR_DECLARE(apr_status_t) apr_lstat(apr_finfo_t *finfo, const char *fname,
                                       apr_int32_t wanted, apr_pool_t *cont)
   {
  -    return apr_stat(finfo, fname, wanted & APR_FINFO_LINK, cont);
  +    return apr_stat(finfo, fname, wanted | APR_FINFO_LINK, cont);
   }