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 2002/01/09 23:05:10 UTC

cvs commit: apr/file_io/win32 open.c

wrowe       02/01/09 14:05:09

  Modified:    file_io/win32 open.c
  Log:
    We went to the trouble of assembling the name ... why not return it :-?
  
  Revision  Changes    Path
  1.90      +2 -0      apr/file_io/win32/open.c
  
  Index: open.c
  ===================================================================
  RCS file: /home/cvs/apr/file_io/win32/open.c,v
  retrieving revision 1.89
  retrieving revision 1.90
  diff -u -r1.89 -r1.90
  --- open.c	8 Jan 2002 22:48:24 -0000	1.89
  +++ open.c	9 Jan 2002 22:05:09 -0000	1.90
  @@ -203,6 +203,7 @@
               if (*ch == ':' || *ch == '/' || *ch == '\\')
                   *ch = '_';
           }
  +        return wfile;
       }
       else
   #endif
  @@ -244,6 +245,7 @@
               if (*ch == ':' || *ch == '/' || *ch == '\\')
                   *ch = '_';
           }
  +        return nfile;
       }
   }