diff options
author | Andrew Bartlett <abartlet@samba.org> | 2005-08-27 22:48:39 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:34:42 -0500 |
commit | 3c265c79867e55a8118c2fa3c545a451e2b5e7e9 (patch) | |
tree | 7f46481bf44643a93fc9851f0ce497ee2648a49e /source4 | |
parent | d91a5808f07750cb70759d8588b58557184f790a (diff) | |
download | samba-3c265c79867e55a8118c2fa3c545a451e2b5e7e9.tar.gz samba-3c265c79867e55a8118c2fa3c545a451e2b5e7e9.tar.bz2 samba-3c265c79867e55a8118c2fa3c545a451e2b5e7e9.zip |
r9696: Update prototypes for new name of short parsing function.
Andrew Bartlett
(This used to be commit cc35cd5ee2abbd6be01dc1ea66eca0bd48a6f636)
Diffstat (limited to 'source4')
-rw-r--r-- | source4/heimdal/lib/krb5/krb5-protos.h | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/source4/heimdal/lib/krb5/krb5-protos.h b/source4/heimdal/lib/krb5/krb5-protos.h index 711c5ead6e..71d42b43b8 100644 --- a/source4/heimdal/lib/krb5/krb5-protos.h +++ b/source4/heimdal/lib/krb5/krb5-protos.h @@ -3164,20 +3164,27 @@ krb5_unparse_name ( char **/*name*/); krb5_error_code KRB5_LIB_FUNCTION -krb5_unparse_name_always_short ( +krb5_unparse_name_fixed ( krb5_context /*context*/, krb5_const_principal /*principal*/, - char **/*name*/); + char */*name*/, + size_t /*len*/); krb5_error_code KRB5_LIB_FUNCTION -krb5_unparse_name_fixed ( +krb5_unparse_name_fixed_short ( krb5_context /*context*/, krb5_const_principal /*principal*/, char */*name*/, size_t /*len*/); krb5_error_code KRB5_LIB_FUNCTION -krb5_unparse_name_fixed_short ( +krb5_unparse_name_norealm ( + krb5_context /*context*/, + krb5_const_principal /*principal*/, + char **/*name*/); + +krb5_error_code KRB5_LIB_FUNCTION +krb5_unparse_name_norealm_fixed ( krb5_context /*context*/, krb5_const_principal /*principal*/, char */*name*/, |