(krb5_realm_of_cell): new function

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@6441 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Assar Westerlund
1999-07-07 12:30:06 +00:00
parent ace9816a62
commit 544438cc2b

View File

@@ -162,3 +162,16 @@ krb5_afslog_home(krb5_context context,
{ {
return krb5_afslog_uid_home (context, id, cell, realm, getuid(), homedir); return krb5_afslog_uid_home (context, id, cell, realm, getuid(), homedir);
} }
/*
*
*/
krb5_error_code
krb5_realm_of_cell(const char *cell, char **realm)
{
kafs_data kd;
kd.get_realm = get_realm;
return _kafs_realm_of_cell(&kd, cell, realm);
}