summaryrefslogtreecommitdiffstats
path: root/src/include/kim
diff options
context:
space:
mode:
authorAlexandra Ellwood <lxs@mit.edu>2008-09-27 21:31:06 +0000
committerAlexandra Ellwood <lxs@mit.edu>2008-09-27 21:31:06 +0000
commit27862be469db71abf2bcdf64837143a56a6bcd10 (patch)
tree007627581d42b21b9c250da16f911785a4f71ca0 /src/include/kim
parent0e5cb1858d790ccdc128558c6e945612f950b2b6 (diff)
downloadkrb5-27862be469db71abf2bcdf64837143a56a6bcd10.tar.gz
krb5-27862be469db71abf2bcdf64837143a56a6bcd10.tar.xz
krb5-27862be469db71abf2bcdf64837143a56a6bcd10.zip
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
Diffstat (limited to 'src/include/kim')
-rw-r--r--src/include/kim/kim_identity.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/kim/kim_identity.h b/src/include/kim/kim_identity.h
index c627758d1..8f10168f9 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.