From: Ezra Peisach Date: Mon, 8 Mar 2004 07:58:17 +0000 (+0000) Subject: * prof_get.c (profile_parse_boolean): Declare first argument as X-Git-Tag: krb5-1.4-beta1~552 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=ad13966fefd35165b8e03ff946fb599e7b231bc5;p=krb5.git * prof_get.c (profile_parse_boolean): Declare first argument as const char *. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@16160 dc483132-0cff-0310-8789-dd5450dbe970 --- diff --git a/src/util/profile/ChangeLog b/src/util/profile/ChangeLog index 07df01cb3..e71809f9a 100644 --- a/src/util/profile/ChangeLog +++ b/src/util/profile/ChangeLog @@ -1,3 +1,8 @@ +2004-03-08 Ezra Peisach + + * prof_get.c (profile_parse_boolean): Declare first argument as + const char *. + 2004-02-19 Ken Raeburn * prof_init.c (prof_int32): If long is 4 bytes and int is not, diff --git a/src/util/profile/prof_get.c b/src/util/profile/prof_get.c index 0251e84e8..08fac7f06 100644 --- a/src/util/profile/prof_get.c +++ b/src/util/profile/prof_get.c @@ -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;