From: John Kohl Date: Thu, 19 Apr 1990 11:12:57 +0000 (+0000) Subject: fix #include blockers X-Git-Tag: krb5-1.0-alpha2~890 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=e9352c51cf6756f5f96814bd2926dafd74d87e52;p=krb5.git fix #include blockers creds can't be const (passed to non-const later) fix const on **'s git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@505 dc483132-0cff-0310-8789-dd5450dbe970 --- diff --git a/src/lib/krb5/krb/int-proto.h b/src/lib/krb5/krb/int-proto.h index 54b6ea2a4..bc8888ea8 100644 --- a/src/lib/krb5/krb/int-proto.h +++ b/src/lib/krb5/krb/int-proto.h @@ -13,18 +13,18 @@ #include -#ifndef __KRB5_INT_FUNC_PROTO__ -#define __KRB5_INT_FUNC_PROTO__ +#ifndef KRB5_INT_FUNC_PROTO__ +#define KRB5_INT_FUNC_PROTO__ krb5_error_code krb5_tgtname PROTOTYPE((krb5_principal, krb5_principal, krb5_principal *)); krb5_error_code krb5_get_cred_via_tgt - PROTOTYPE((const krb5_creds *, + PROTOTYPE((krb5_creds *, const krb5_flags, const krb5_enctype, const krb5_cksumtype, - const krb5_address **, + krb5_address * const *, krb5_creds * )); krb5_error_code krb5_walk_realm_tree PROTOTYPE((krb5_principal, @@ -33,5 +33,5 @@ krb5_error_code krb5_walk_realm_tree krb5_error_code krb5_free_realm_tree PROTOTYPE((krb5_principal *)); -#endif /* __KRB5_INT_FUNC_PROTO__ */ +#endif /* KRB5_INT_FUNC_PROTO__ */