You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by rb...@apache.org on 2002/12/11 20:52:06 UTC

cvs commit: apr/file_io/win32 dir.c

rbb         2002/12/11 11:52:06

  Modified:    file_io/win32 dir.c
  Log:
  Add a stub function for apr_dir_make_recursive.  This doesn't do anything,
  but it gets us linking the tests again.
  
  Revision  Changes    Path
  1.65      +8 -0      apr/file_io/win32/dir.c
  
  Index: dir.c
  ===================================================================
  RCS file: /home/cvs/apr/file_io/win32/dir.c,v
  retrieving revision 1.64
  retrieving revision 1.65
  diff -u -r1.64 -r1.65
  --- dir.c	20 Mar 2002 08:54:42 -0000	1.64
  +++ dir.c	11 Dec 2002 19:52:06 -0000	1.65
  @@ -295,6 +295,14 @@
       return APR_SUCCESS;
   }
   
  +APR_DECLARE(apr_status_t) apr_dir_make_recursive(const char *path,
  +                                                 apr_fileperms_t perm,
  +                                                 apr_pool_t *pool)
  +{
  +    return APR_ENOTIMPL;
  +}
  +
  +
   APR_DECLARE(apr_status_t) apr_dir_remove(const char *path, apr_pool_t *pool)
   {
   #if APR_HAS_UNICODE_FS