const char ** to prevent warning of const to non-const.
* get_in_tkt.c (_krb5_conf_boolean): Same
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@14586
dc483132-0cff-0310-8789-
dd5450dbe970
+2002-06-26 Ezra Peisach <epeisach@bu.edu>
+
+ * appdefault.c (conf_boolean): Change variable from char ** to
+ const char ** to prevent warning of const to non-const.
+
+ * get_in_tkt.c (_krb5_conf_boolean): Same
+
2002-06-25 Alexandra Ellwood <lxs@mit.edu>
* appdefault.c, get_in_tkt.c: made conf_yes and conf_no const to
static int conf_boolean(s)
char *s;
{
- char **p;
+ const char **p;
for(p=conf_yes; *p; p++) {
if (!strcasecmp(*p,s))
return 1;
_krb5_conf_boolean(s)
const char *s;
{
- char **p;
+ const char **p;
for(p=conf_yes; *p; p++) {
if (!strcasecmp(*p,s))