Date: 10/22/07 (Code WTF) Keywords: technology krb5-1.6.2/src/kdc/kerberos_v4.c static void
hang(void)
{
...
char buf[256];
sprintf(buf,
"Kerberos will wait %d seconds before dying so as not to loop init",
(int) pause_int);
klog(L_KRB_PERR, buf);
sleep((unsigned) pause_int);
klog(L_KRB_PERR, "Do svedania....\n");
...
}
Source: http://community.livejournal.com/code_wtf/108532.html
|