mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
6b7ea58f15
* Paths corrected in applications * ftpd now logs to facility LOG_FTP * use openpty to obtain pseudo-terminal * corrected detection of TCL libraries * fix a forwarding bug * add -m flag to ksu (preserve USER, HOME, SHELL) * cosmetic bug fix to telnet.c Submitted by: Dima Ruban <dima@best.net>
20 lines
537 B
Plaintext
20 lines
537 B
Plaintext
*** appl/bsd/forward.c.ORIG Fri Feb 6 19:41:16 1998
|
|
--- appl/bsd/forward.c Tue Jun 30 19:46:01 1998
|
|
***************
|
|
*** 51,57 ****
|
|
*/
|
|
|
|
sprintf(ccname, "FILE:/tmp/krb5cc_p%d", getpid());
|
|
! setenv("KRB5CCNAME", ccname, 0);
|
|
|
|
if (retval = krb5_cc_resolve(context, ccname, ccache))
|
|
goto cleanup;
|
|
--- 51,57 ----
|
|
*/
|
|
|
|
sprintf(ccname, "FILE:/tmp/krb5cc_p%d", getpid());
|
|
! setenv("KRB5CCNAME", ccname, 1);
|
|
|
|
if (retval = krb5_cc_resolve(context, ccname, ccache))
|
|
goto cleanup;
|