]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
renamed isc_file_getabsolutepath() to isc_file_absolutepath()
authorAndreas Gustafsson <source@isc.org>
Mon, 16 Jul 2001 17:22:17 +0000 (17:22 +0000)
committerAndreas Gustafsson <source@isc.org>
Mon, 16 Jul 2001 17:22:17 +0000 (17:22 +0000)
to be more consistent with established naming conventions

lib/isc/include/isc/file.h
lib/isc/win32/file.c

index e19f2677374a30047e5c904ac1e2f90b2f6deeae..3870ca238f87a72c783e59d5ebbe3bc9788e223b 100644 (file)
@@ -15,7 +15,7 @@
  * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: file.h,v 1.22 2001/07/16 04:09:42 gson Exp $ */
+/* $Id: file.h,v 1.23 2001/07/16 17:22:16 gson Exp $ */
 
 #ifndef ISC_FILE_H
 #define ISC_FILE_H 1
@@ -223,7 +223,7 @@ isc_file_renameunique(const char *file, char *templet);
  */
 
 isc_result_t
-isc_file_getabsolutepath(const char *filename, char *path, size_t pathlen);
+isc_file_absolutepath(const char *filename, char *path, size_t pathlen);
 /*
  * Given a file name, return the fully qualified path to the file.
  */
index 25d92489ba67e3c6b62b22998757641f63226e34..d1ef5d9a8fca21dc7f098a8b02e8ebf51c490273 100644 (file)
@@ -15,7 +15,7 @@
  * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: file.c,v 1.17 2001/07/16 04:09:44 gson Exp $ */
+/* $Id: file.c,v 1.18 2001/07/16 17:22:17 gson Exp $ */
 
 #include <config.h>
 
@@ -456,7 +456,7 @@ isc_file_progname(const char *filename, char *progname, size_t namelen) {
 }
 
 isc_result_t
-isc_file_getabsolutepath(const char *filename, char *path, size_t pathlen) {
+isc_file_absolutepath(const char *filename, char *path, size_t pathlen) {
        char *ptrname;
        DWORD retval;