diff options
| author | John Kohl <jtkohl@mit.edu> | 1990-04-19 11:12:57 +0000 |
|---|---|---|
| committer | John Kohl <jtkohl@mit.edu> | 1990-04-19 11:12:57 +0000 |
| commit | e9352c51cf6756f5f96814bd2926dafd74d87e52 (patch) | |
| tree | fe2881ad39fb57803890e9a8de32f7b10da71929 /src | |
| parent | 8583aef3c5b6b08993010c6359f86cf314e774d0 (diff) | |
| download | krb5-e9352c51cf6756f5f96814bd2926dafd74d87e52.tar.gz krb5-e9352c51cf6756f5f96814bd2926dafd74d87e52.tar.xz krb5-e9352c51cf6756f5f96814bd2926dafd74d87e52.zip | |
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
Diffstat (limited to 'src')
| -rw-r--r-- | src/lib/krb5/krb/int-proto.h | 10 |
1 files changed, 5 insertions, 5 deletions
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 <krb5/copyright.h> -#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__ */ |
