summaryrefslogtreecommitdiffstats
path: root/crypto/heimdal/lib/krb5/get_default_realm.c
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/heimdal/lib/krb5/get_default_realm.c')
-rw-r--r--crypto/heimdal/lib/krb5/get_default_realm.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/crypto/heimdal/lib/krb5/get_default_realm.c b/crypto/heimdal/lib/krb5/get_default_realm.c
index c090cea..74a880d 100644
--- a/crypto/heimdal/lib/krb5/get_default_realm.c
+++ b/crypto/heimdal/lib/krb5/get_default_realm.c
@@ -33,7 +33,7 @@
#include "krb5_locl.h"
-RCSID("$Id: get_default_realm.c,v 1.9 2001/05/14 06:14:47 assar Exp $");
+RCSID("$Id: get_default_realm.c,v 1.10 2001/07/19 16:55:27 assar Exp $");
/*
* Return a NULL-terminated list of default realms in `realms'.
@@ -68,8 +68,10 @@ krb5_get_default_realm(krb5_context context,
if (context->default_realms == NULL
|| context->default_realms[0] == NULL) {
krb5_error_code ret = krb5_set_default_realm (context, NULL);
- if (ret)
+ if (ret) {
+ krb5_set_error_string(context, "no default realm configured");
return KRB5_CONFIG_NODEFREALM;
+ }
}
res = strdup (context->default_realms[0]);
OpenPOWER on IntegriCloud