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:08:49 UTC

cvs commit: apr/include/arch/netware fileio.h

bnicholes    01/10/03 17:08:49

  Modified:    include/arch/netware fileio.h
  Log:
  Updated the function prototypes to match the way it is being called.
  
  Revision  Changes    Path
  1.2       +2 -2      apr/include/arch/netware/fileio.h
  
  Index: fileio.h
  ===================================================================
  RCS file: /home/cvs/apr/include/arch/netware/fileio.h,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- fileio.h	2001/08/29 23:35:39	1.1
  +++ fileio.h	2001/10/04 00:08:49	1.2
  @@ -157,12 +157,12 @@
    * check to see of the path only contains a drive/volume specifier and
    * nothing else.
    */
  -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);
   
   /* This function compares the drive/volume specifiers for each given path.
    * It returns zero if they match or non-zero if not. 
    */
  -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);
   
   apr_status_t apr_unix_file_cleanup(void *);