You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by bn...@apache.org on 2001/10/04 02:02:16 UTC

cvs commit: apr/file_io/netware filesys.c

bnicholes    01/10/03 17:02:16

  Modified:    file_io/netware filesys.c
  Log:
  Updated parameter lists due to prototype changes.
  
  Revision  Changes    Path
  1.3       +2 -2      apr/file_io/netware/filesys.c
  
  Index: filesys.c
  ===================================================================
  RCS file: /home/cvs/apr/file_io/netware/filesys.c,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- filesys.c	2001/09/09 06:03:05	1.2
  +++ filesys.c	2001/10/04 00:02:16	1.3
  @@ -66,7 +66,7 @@
       return APR_SUCCESS;
   }
   
  -apr_status_t filepath_has_drive(char *rootpath, int only, apr_pool_t *p)
  +apr_status_t filepath_has_drive(const char *rootpath, int only, apr_pool_t *p)
   {
       char *s;
   
  @@ -84,7 +84,7 @@
       return 0;
   }
   
  -apr_status_t filepath_compare_drive(char *path1, char *path2, apr_pool_t *p)
  +apr_status_t filepath_compare_drive(const char *path1, const char *path2, apr_pool_t *p)
   {
       char *s1, *s2;