Return-Path: Delivered-To: apmail-apr-cvs-archive@apr.apache.org Received: (qmail 6157 invoked by uid 500); 4 Oct 2001 00:11:17 -0000 Mailing-List: contact cvs-help@apr.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: Reply-To: dev@apr.apache.org Delivered-To: mailing list cvs@apr.apache.org Received: (qmail 6146 invoked from network); 4 Oct 2001 00:11:17 -0000 Date: 4 Oct 2001 00:08:49 -0000 Message-ID: <20011004000849.52839.qmail@icarus.apache.org> From: bnicholes@apache.org To: apr-cvs@apache.org Subject: cvs commit: apr/include/arch/netware fileio.h X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N 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 *);