]> eyrie.org Git - kerberos/heimdal-kadm5.git/commitdiff
Removed unneeded stderr message when setting realm
authorJon Robertson <jonrober@stanford.edu>
Wed, 6 Jan 2010 17:51:28 +0000 (09:51 -0800)
committerJon Robertson <jonrober@stanford.edu>
Fri, 5 Feb 2010 22:10:40 +0000 (14:10 -0800)
The realm was being printed out to stderr whenever a new connection was
created with the realm specifically set.  This was not done with any of the
other settings, and was cluttering up the script's error output.  That line
has now been commented out, and can be later removed.

Kadm5.xs

index 46ee33a38394d235eb90fe30c54e90703b10e530..f1312f8dad6a88782b0a699d06678e81c969a8b2 100644 (file)
--- a/Kadm5.xs
+++ b/Kadm5.xs
@@ -189,7 +189,7 @@ new(self,sv)
        
         if (set_param_strval(hv,&handle->params.realm,"Realm"))
         {
-           fprintf(stderr,"Realm=\"%s\"\n",handle->params.realm);
+           /* fprintf(stderr,"Realm=\"%s\"\n",handle->params.realm); */
           krb5_set_default_realm(handle->context, handle->params.realm);
           handle->params.mask |= KADM5_CONFIG_REALM;
         }