From 27862be469db71abf2bcdf64837143a56a6bcd10 Mon Sep 17 00:00:00 2001 From: Alexandra Ellwood Date: Sat, 27 Sep 2008 21:31:06 +0000 Subject: Renamed kim_identity_get_components to kim_identity_get_components_string to better reflect what it does (a string of everything but the realm, not an array of components like the old name might imply). Added private functions which will be used by KLL to shim on top of KIM. Private functions also reduce memory allocations inside of KIM. ticket: 6055 git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@20766 dc483132-0cff-0310-8789-dd5450dbe970 --- src/include/kim/kim_identity.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/include') diff --git a/src/include/kim/kim_identity.h b/src/include/kim/kim_identity.h index c627758d1c..8f10168f96 100644 --- a/src/include/kim/kim_identity.h +++ b/src/include/kim/kim_identity.h @@ -248,8 +248,8 @@ kim_error kim_identity_get_component_at_index (kim_identity in_identity, * \return On success, #KIM_NO_ERROR. On failure, an error code representing the failure. * \brief Get a display string of the non-realm components of an identity. */ -kim_error kim_identity_get_components (kim_identity in_identity, - kim_string *out_components); +kim_error kim_identity_get_components_string (kim_identity in_identity, + kim_string *out_components); /*! * \param in_identity an identity object. -- cgit