Fix a few typos.

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@2886 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Johan Danielsson
1997-08-10 22:17:05 +00:00
parent 4ef30a7878
commit 71fd841a29

View File

@@ -474,9 +474,11 @@ krb5_425_conv_principal(krb5_context context,
name = p; name = p;
p = krb5_config_get_string(context->cf, "realms", realm, p = krb5_config_get_string(context->cf, "realms", realm,
"v4_instance_convert", instance, NULL); "v4_instance_convert", instance, NULL);
if(p) if(p){
instance = p;
goto done; goto done;
if(krb5_config_get_string(context->cf, "lib_defaults", }
if(krb5_config_get_string(context->cf, "libdefaults",
"v4_instance_resolve", NULL)){ "v4_instance_resolve", NULL)){
struct hostent *hp = gethostbyname(instance); struct hostent *hp = gethostbyname(instance);
if(hp){ if(hp){
@@ -485,7 +487,7 @@ krb5_425_conv_principal(krb5_context context,
} }
} }
p = krb5_config_get_string(context->cf, "realms", realm, p = krb5_config_get_string(context->cf, "realms", realm,
"default_domain", instance, NULL); "default_domain", NULL);
if(p == NULL){ if(p == NULL){
/* should this be an error or should it silently /* should this be an error or should it silently
succeed? */ succeed? */