1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-31 21:57:12 +00:00
freebsd-ports/ftp/wu-ftpd+ipv6/files/patch-ac
Gary Palmer 64b881e789 Finally get most of wu-ftpd working.
Changes:

- Use internal functions rather than libc versions in a couple of places
  This allows writing to dirs without read perms and the
  ftpconversions file to work.
- Fix up skey support to use correct parameters
- using compress in the ftpconversions file doesn't seem to work,
  so alter example ftpconversions file to use gzip -d rather than compress -dc
- Install manpages compressed

Still broken :

- using /bin/compress to compress/uncompress files on the fly
1995-01-25 22:41:57 +00:00

48 lines
1.4 KiB
Plaintext

*** src/pathnames.h.orig Wed Apr 13 22:46:48 1994
--- src/pathnames.h Tue Oct 18 18:26:26 1994
***************
*** 29,41 ****
*
* @(#)pathnames.h 5.2 (Berkeley) 6/1/90 */
! #define _PATH_FTPUSERS "/etc/ftpusers"
! #define _PATH_FTPACCESS "/usr/local/etc/ftpaccess"
#define _PATH_EXECPATH "/bin/ftp-exec"
! #define _PATH_PIDNAMES "/usr/local/daemon/ftpd/ftp.pids-%s"
! #define _PATH_CVT "/usr/local/etc/ftpconversions"
! #define _PATH_XFERLOG "/usr/adm/xferlog"
! #define _PATH_PRIVATE "/etc/ftpgroups"
#ifndef _PATH_UTMP
#define _PATH_UTMP "/etc/utmp"
--- 29,41 ----
*
* @(#)pathnames.h 5.2 (Berkeley) 6/1/90 */
! #define _PATH_FTPUSERS "!!PREFIX!!/etc/ftpusers"
! #define _PATH_FTPACCESS "!!PREFIX!!/etc/ftpaccess"
#define _PATH_EXECPATH "/bin/ftp-exec"
! #define _PATH_PIDNAMES "!!PREFIX!!/daemon/ftpd/ftp.pids-%s"
! #define _PATH_CVT "!!PREFIX!!/etc/ftpconversions"
! #define _PATH_XFERLOG "/var/log/xferlog"
! #define _PATH_PRIVATE "!!PREFIX!!/etc/ftpgroups"
#ifndef _PATH_UTMP
#define _PATH_UTMP "/etc/utmp"
***************
*** 47,52 ****
#define _PATH_DEVNULL "/dev/null"
#ifdef HOST_ACCESS
! #define _PATH_FTPHOSTS "/usr/local/etc/ftphosts"
#endif
--- 47,53 ----
#define _PATH_DEVNULL "/dev/null"
#ifdef HOST_ACCESS
! #define _PATH_FTPHOSTS "!!PREFIX!!/etc/ftphosts"
! #else
#endif