* prof_init.c (profile_init_path): Add const declarations
authorEzra Peisach <epeisach@mit.edu>
Mon, 2 Oct 1995 20:41:21 +0000 (20:41 +0000)
committerEzra Peisach <epeisach@mit.edu>
Mon, 2 Oct 1995 20:41:21 +0000 (20:41 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@6923 dc483132-0cff-0310-8789-dd5450dbe970

src/util/profile/ChangeLog
src/util/profile/prof_init.c

index 72ca7ed7e86dcb558ef6a77719c664b01e9c1e62..829eb85acc62ab6c1c2465a523392200b9e37794 100644 (file)
@@ -1,3 +1,7 @@
+Mon Oct  2 16:39:49 1995  Ezra Peisach  <epeisach@kangaroo.mit.edu>
+
+       * prof_init.c (profile_init_path): Add const declarations.
+
 Tue Sep 26 20:00:28 1995  Mark Eichin  <eichin@cygnus.com>
 
        * prof_init.c (profile_init_path): takes a single string entry
index 060675cab827d7cba706a34ec932b850770e8b5b..867ef9996ce2a0f2c53096529e82b4195f001d3b 100644 (file)
@@ -72,7 +72,7 @@ errcode_t profile_init_path(filepath, ret_profile)
 {
        int n_entries, i;
        int ent_len;
-       char *s, *t;
+       const char *s, *t;
        char **filenames;
        errcode_t retval;
 
@@ -106,7 +106,7 @@ errcode_t profile_init_path(filepath, ret_profile)
        /* cap the array */
        filenames[i] = 0;
 
-       retval = profile_init(filenames, ret_profile);
+       retval = profile_init((const char **)filenames, ret_profile);
 
        /* count back down and free the entries */
        while(--i >= 0) free(filenames[i]);