[410] in Kerberos
Re: ticket file access
daemon@TELECOM.MIT.EDU (John T Kohl)
Fri Jun 24 14:32:44 1988
From: John T Kohl <jtkohl@ATHENA.MIT.EDU>
To: kerberos@ATHENA.MIT.EDU
In-Reply-To: Mark Rosenstein's message, [0408]
All that is required to change the library's idea of where the tickets
should live is to define a function tkt_string(). An example from the
Zephyr server:
static char tkt_file[] = ZEPHYR_TKFILE;
/* Hack to replace the kerberos library's idea of the ticket file with
our idea */
char *
tkt_string()
{
return(tkt_file);
}