Edit

IABSD.fr/src/usr.bin/ssh/sftp-server

Branch :

  • Show log

    Commit

  • Author : djm
    Date : 2019-07-05 04:55:40
    Hash : a1ec2b37
    Message : add a local implementation of BSD realpath() for sftp-server use ahead of OpenBSD's realpath changing to match POSIX; ok deraadt@ (thanks for snaps testing)

  • Makefile
  • #	$OpenBSD: Makefile,v 1.13 2019/07/05 04:55:41 djm Exp $
    
    .PATH:		${.CURDIR}/..
    
    SRCS=	sftp-server.c sftp-common.c sftp-server-main.c sftp-realpath.c
    SRCS+=	fatal.c
    SRCS+=	${SRCS_BASE} ${SRCS_UTL}
    
    PROG=	sftp-server
    
    BINDIR=	/usr/libexec
    MAN=	sftp-server.8
    
    LDADD+=	-lutil
    DPADD+= ${LIBUTIL}
    
    .include <bsd.prog.mk>