aboutsummaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/krb5/krb/get_in_tkt.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/lib/krb5/krb/get_in_tkt.c b/src/lib/krb5/krb/get_in_tkt.c
index 679ecc4..1002195 100644
--- a/src/lib/krb5/krb/get_in_tkt.c
+++ b/src/lib/krb5/krb/get_in_tkt.c
@@ -556,7 +556,7 @@ cleanup:
return (retval);
}
-/* begin libdefaults parsing code. This should almost certainly move
+/* begin appdefaults parsing code. This should almost certainly move
somewhere else, but I don't know where the correct somewhere else
is yet. */
@@ -571,7 +571,7 @@ static char *conf_no[] = {
0,
};
-static int conf_boolean(s)
+int krb5_conf_boolean(s)
char *s;
{
char **p;
@@ -666,6 +666,7 @@ goodbye:
}
/* not static so verify_init_creds() can call it */
+/* as well as the DNS code */
krb5_error_code
krb5_appdefault_boolean(context, realm, option, ret_value)
@@ -682,7 +683,7 @@ krb5_appdefault_boolean(context, realm, option, ret_value)
if (retval)
return(retval);
- *ret_value = conf_boolean(string);
+ *ret_value = krb5_conf_boolean(string);
free(string);
return(0);