aboutsummaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authorGreg Hudson <ghudson@mit.edu>2014-01-15 12:31:41 -0500
committerGreg Hudson <ghudson@mit.edu>2014-01-17 15:58:07 -0500
commit74ff6c4accb68bd1d6c652c55e66519720db9fc4 (patch)
tree7d80e8bb22d30d7d519015cd37fae6ff9ccd3e74 /src/include
parentf975b003c2d05edef1302d97b6882cca3a0f2724 (diff)
downloadkrb5-74ff6c4accb68bd1d6c652c55e66519720db9fc4.zip
krb5-74ff6c4accb68bd1d6c652c55e66519720db9fc4.tar.gz
krb5-74ff6c4accb68bd1d6c652c55e66519720db9fc4.tar.bz2
Make rcache resolve functions take const char *
Diffstat (limited to 'src/include')
-rw-r--r--src/include/k5-int.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/include/k5-int.h b/src/include/k5-int.h
index bbc7fab..b4757a9 100644
--- a/src/include/k5-int.h
+++ b/src/include/k5-int.h
@@ -1887,8 +1887,10 @@ krb5_error_code KRB5_CALLCONV
krb5int_cc_user_set_default_name(krb5_context context, const char *name);
krb5_error_code krb5_rc_default(krb5_context, krb5_rcache *);
-krb5_error_code krb5_rc_resolve_type(krb5_context, krb5_rcache *,char *);
-krb5_error_code krb5_rc_resolve_full(krb5_context, krb5_rcache *,char *);
+krb5_error_code krb5_rc_resolve_type(krb5_context, krb5_rcache *,
+ const char *);
+krb5_error_code krb5_rc_resolve_full(krb5_context, krb5_rcache *,
+ const char *);
char *krb5_rc_get_type(krb5_context, krb5_rcache);
char *krb5_rc_default_type(krb5_context);
char *krb5_rc_default_name(krb5_context);