diff options
| author | John Kohl <jtkohl@mit.edu> | 1990-10-19 10:17:21 +0000 |
|---|---|---|
| committer | John Kohl <jtkohl@mit.edu> | 1990-10-19 10:17:21 +0000 |
| commit | e25d0fd41cd6811616a50a1b8a675c86f873bda0 (patch) | |
| tree | ce5294623b1776c1cd0e06ef63e3b9a6b30b605e /src/include | |
| parent | 55f59874540afbf0bde424191bd6dab7de76d2c3 (diff) | |
| download | krb5-e25d0fd41cd6811616a50a1b8a675c86f873bda0.tar.gz krb5-e25d0fd41cd6811616a50a1b8a675c86f873bda0.tar.xz krb5-e25d0fd41cd6811616a50a1b8a675c86f873bda0.zip | |
change 'const krb5_principal' to krb5_const_principal
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@1285 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/include')
| -rw-r--r-- | src/include/krb5/asn.1/asn1defs.h | 2 | ||||
| -rw-r--r-- | src/include/krb5/func-proto.h | 20 | ||||
| -rw-r--r-- | src/include/krb5/los-proto.h | 2 |
3 files changed, 12 insertions, 12 deletions
diff --git a/src/include/krb5/asn.1/asn1defs.h b/src/include/krb5/asn.1/asn1defs.h index e43fdd2de..b4a0e5cd2 100644 --- a/src/include/krb5/asn.1/asn1defs.h +++ b/src/include/krb5/asn.1/asn1defs.h @@ -158,7 +158,7 @@ struct type_KRB5_EncKrbPrivPart *krb5_priv_enc_part2KRB5_EncKrbPrivPart /* kprin2prin.c */ struct type_KRB5_PrincipalName *krb5_principal2KRB5_PrincipalName - PROTOTYPE((const krb5_principal , int *)); + PROTOTYPE((krb5_const_principal , int *)); /* kpriv2priv.c */ struct type_KRB5_KRB__PRIV *krb5_priv2KRB5_KRB__PRIV diff --git a/src/include/krb5/func-proto.h b/src/include/krb5/func-proto.h index e07ec9e4d..0c63875fc 100644 --- a/src/include/krb5/func-proto.h +++ b/src/include/krb5/func-proto.h @@ -47,7 +47,7 @@ krb5_error_code krb5_send_tgs const krb5_ticket_times *, const krb5_enctype, const krb5_cksumtype, - const krb5_principal, + krb5_const_principal, krb5_address * const *, krb5_authdata * const *, const krb5_data *, @@ -95,7 +95,7 @@ krb5_error_code krb5_get_in_tkt_with_skey krb5_ccache, krb5_creds * )); krb5_error_code krb5_mk_req - PROTOTYPE((const krb5_principal, + PROTOTYPE((krb5_const_principal, const krb5_flags, const krb5_checksum *, krb5_ccache, @@ -111,12 +111,12 @@ krb5_error_code krb5_mk_req_extended krb5_data * )); krb5_error_code krb5_rd_req_simple PROTOTYPE((const krb5_data *, - const krb5_principal, + krb5_const_principal, const krb5_address *, krb5_tkt_authent * )); krb5_error_code krb5_rd_req PROTOTYPE((const krb5_data *, - const krb5_principal, + krb5_const_principal, const krb5_address *, krb5_const_pointer, krb5_error_code (* )(krb5_pointer, @@ -128,7 +128,7 @@ krb5_error_code krb5_rd_req krb5_tkt_authent * )); krb5_error_code krb5_rd_req_decoded PROTOTYPE((const krb5_ap_req *, - const krb5_principal, + krb5_const_principal, const krb5_address *, krb5_const_pointer, krb5_error_code (* )(krb5_pointer, @@ -184,10 +184,10 @@ krb5_error_code krb5_parse_name PROTOTYPE((const char *, krb5_principal * )); krb5_error_code krb5_unparse_name - PROTOTYPE((const krb5_principal, + PROTOTYPE((krb5_const_principal, char ** )); krb5_error_code krb5_unparse_name_ext - PROTOTYPE((const krb5_principal, + PROTOTYPE((krb5_const_principal, char **, int *)); krb5_boolean krb5_address_search @@ -200,8 +200,8 @@ int krb5_address_order PROTOTYPE((const krb5_address *, const krb5_address *)); krb5_boolean krb5_principal_compare - PROTOTYPE((const krb5_principal, - const krb5_principal)); + PROTOTYPE((krb5_const_principal, + krb5_const_principal)); int krb5_fulladdr_order PROTOTYPE((const krb5_fulladdr *, const krb5_fulladdr *)); @@ -215,7 +215,7 @@ krb5_error_code krb5_copy_data PROTOTYPE((const krb5_data *, krb5_data **)); krb5_error_code krb5_copy_principal - PROTOTYPE((const krb5_principal, + PROTOTYPE((krb5_const_principal, krb5_principal *)); krb5_error_code krb5_copy_addresses PROTOTYPE((krb5_address * const *, diff --git a/src/include/krb5/los-proto.h b/src/include/krb5/los-proto.h index cf747aca7..80f300cce 100644 --- a/src/include/krb5/los-proto.h +++ b/src/include/krb5/los-proto.h @@ -57,7 +57,7 @@ krb5_error_code krb5_get_krbhst krb5_error_code krb5_free_krbhst PROTOTYPE((char * const * )); krb5_error_code krb5_aname_to_localname - PROTOTYPE((const krb5_principal, + PROTOTYPE((krb5_const_principal, const int, char * )); krb5_error_code krb5_get_default_realm |
