* prof_get.c (profile_parse_boolean): Declare first argument as
authorEzra Peisach <epeisach@mit.edu>
Mon, 8 Mar 2004 07:58:17 +0000 (07:58 +0000)
committerEzra Peisach <epeisach@mit.edu>
Mon, 8 Mar 2004 07:58:17 +0000 (07:58 +0000)
        const char *.

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@16160 dc483132-0cff-0310-8789-dd5450dbe970

src/util/profile/ChangeLog
src/util/profile/prof_get.c

index 07df01cb374177896b5b2fccb67b1deeadb5f3a8..e71809f9aed510bb56714188ef92f2f527bd8a3e 100644 (file)
@@ -1,3 +1,8 @@
+2004-03-08  Ezra Peisach  <epeisach@mit.edu>
+
+       * prof_get.c (profile_parse_boolean): Declare first argument as
+       const char *.
+
 2004-02-19  Ken Raeburn  <raeburn@mit.edu>
 
        * prof_init.c (prof_int32): If long is 4 bytes and int is not,
index 0251e84e8062aadbfb7019b9941529f168e4213d..08fac7f06f5c797a3875d11d27e43a59a337009e 100644 (file)
@@ -283,7 +283,7 @@ static const char *const conf_no[] = {
 };
 
 static errcode_t
-profile_parse_boolean(char *s, int *ret_boolean)
+profile_parse_boolean(const char *s, int *ret_boolean)
 {
     const char *const *p;