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>
26 lines
776 B
Plaintext
26 lines
776 B
Plaintext
*** appl/gssftp/ftpd/ftpd.c.ORIG Fri Feb 6 19:41:25 1998
|
|
--- appl/gssftp/ftpd/ftpd.c Tue Jun 30 19:46:01 1998
|
|
***************
|
|
*** 374,380 ****
|
|
#ifndef LOG_DAEMON
|
|
#define LOG_DAEMON 0
|
|
#endif
|
|
! openlog("ftpd", LOG_PID | LOG_NDELAY, LOG_DAEMON);
|
|
addrlen = sizeof (his_addr);
|
|
if (getpeername(0, (struct sockaddr *)&his_addr, &addrlen) < 0) {
|
|
syslog(LOG_ERR, "getpeername (%s): %m",argv[0]);
|
|
--- 374,386 ----
|
|
#ifndef LOG_DAEMON
|
|
#define LOG_DAEMON 0
|
|
#endif
|
|
!
|
|
! #ifndef LOG_FTP
|
|
! #define FACILITY LOG_DAEMON
|
|
! #else
|
|
! #define FACILITY LOG_FTP
|
|
! #endif
|
|
! openlog("ftpd", LOG_PID | LOG_NDELAY, FACILITY);
|
|
addrlen = sizeof (his_addr);
|
|
if (getpeername(0, (struct sockaddr *)&his_addr, &addrlen) < 0) {
|
|
syslog(LOG_ERR, "getpeername (%s): %m",argv[0]);
|