Lines Matching refs:realms
312 hierarchy[0] = "realms";
467 hierarchy[0] = "realms";
504 hierarchy[0] = "realms";
553 * errcode_t k5_profile_get_realms(profile_t profile, char ***realms)
556 * where realms is a string array of realm names currently configured.
558 * Note: if realms have not been configured then NULL is returned for realms.
561 k5_profile_get_realms(profile_t profile, char ***realms)
564 if (profile == NULL || realms == NULL)
567 *realms = NULL;
569 return (k5_profile_iter_name_value(profile, "realms", NULL, realms,
611 hierarchy[0] = "realms";
664 * realms. If the source and target share x-realm keys then this set to "."
759 * Note: the function removes the matching realm in the realms section,
797 hierarchy[0] = "realms";
821 * realms. If the source and target share x-realm keys then this set to "."
864 * realm in realms section differs in case from the realm specified
867 * default realm is not found in realms section
873 * no realm found in realms section
889 * realm name specified is not found in realms section
917 char *default_realm = NULL, **realms = NULL;
926 code = k5_profile_get_realms(profile, &realms);
927 if (code == 0 && realms != NULL) {
928 for (trealms = realms; *trealms; trealms++) {
942 } else if (code == 0 && realms == NULL) {
1034 for (trealms = realms; *trealms; trealms++) {
1053 if (realms != NULL)
1054 profile_free_list(realms);
1165 m = _("realm in [realms] section should be in upper-case");
1168 m = _("default_realm is not found in [realms] section");
1174 m = _("no realms found in the [realms] section");
1191 m = _("specified realm not found in [realms] section");