Displaying 2 results from an estimated 2 matches for "krb4_ticket_fil".
Did you mean:
krb4_ticket_file
2003 Feb 14
0
patch for krb4 authentization in openssh-3.5p1 on RH 8.0
...emp() returning error.
PATCH
*** ../openssh-3.5p1/auth-krb4.c 2002-09-27 05:26:00.000000000 +0200
--- auth-krb4.c 2003-02-12 14:52:43.000000000 +0100
***************
*** 58,63 ****
tkt_root = "/ticket/";
#endif /* AFS */
! snprintf(authctxt->krb4_ticket_file, MAXPATHLEN,
"%s%u_%ld",
tkt_root, authctxt->pw->pw_uid, (long)getpid());
krb_set_tkt_string(authctxt->krb4_ticket_file);
}
--- 58,66 ----
tkt_root = "/ticket/";
#endif /* AFS */
! ch...
2003 Mar 12
1
[Bug 508] Krb4/AFS token passing doesn't work because of mkstemp
...OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: sshd
AssignedTo: openssh-unix-dev at mindrot.org
ReportedBy: ksulliva at psc.edu
In auth-krb4.c, in krb4_init(), we have:
if ((fd = mkstemp(authctxt->krb4_ticket_file)) != -1) {
which tries to create a temporary file to hold kerberos tickets. This file is
created some lines above by:
snprintf(authctxt->krb4_ticket_file, MAXPATHLEN, "%s%u_%ld",
So, mkstemp() is passes something like "/tmp/tkt9036_6294", with no Xs at the end.
On...