r18892@cathode-dark-space: tlyu | 2006-12-01 11:40:46 -0500
ticket: 4941
tags: pullup
* src/appl/telnet/libtelnet/kerberos5.c (kerberos5_send):
Conditionalize debugging printfs.
ticket: 4941
version_fixed: 1.6
git-svn-id: svn://anonsvn.mit.edu/krb5/branches/krb5-1-6@18900
dc483132-0cff-0310-8789-
dd5450dbe970
}
memset((char *)&creds, 0, sizeof(creds));
- printf("calling krb5_sname_to_principal\n");
+ if (auth_debug_mode)
+ printf("telnet: calling krb5_sname_to_principal\n");
if ((r = krb5_sname_to_principal(telnet_context, RemoteHostName,
"host", KRB5_NT_SRV_HST,
&creds.server))) {
printf("telnet: Kerberos V5: error while constructing service name: %s\r\n", error_message(r));
return(0);
}
- printf("done calling krb5_sname_to_principal\n");
+ if (auth_debug_mode)
+ printf("telnet: done calling krb5_sname_to_principal\n");
if (telnet_krb5_realm != NULL) {
krb5_data rdata;