From cc35cd5ee2abbd6be01dc1ea66eca0bd48a6f636 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Sat, 27 Aug 2005 22:48:39 +0000 Subject: [PATCH] r9696: Update prototypes for new name of short parsing function. Andrew Bartlett --- source/heimdal/lib/krb5/krb5-protos.h | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/source/heimdal/lib/krb5/krb5-protos.h b/source/heimdal/lib/krb5/krb5-protos.h index 711c5ead6ee..71d42b43b8d 100644 --- a/source/heimdal/lib/krb5/krb5-protos.h +++ b/source/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*/, -- 2.34.1