Displaying 4 results from an estimated 4 matches for "_path_sftp_server".
Did you mean:
d_path_sftp_server
2002 Mar 12
0
OpenSSH 3.1: ssh-rand-helper
Dear openssh-developers,
the new external program ssh-rand-helper appeared in
OpenSSH 3.1. While the SFTP_SERVER is defined using
a _PATH_SFTP_SERVER pointing to SFTP_SERVER in Makefile.in
and defining a default-path in pathnames.h the ssh-rand-helper
is simply SSH_RAND_HELPER and defined with a fixed path
in Makefile.in and not having a default in pathnames.h.
I propose a handling analogous to the sftp-server binary.
*** Makefile.in.orig Tue...
2001 Feb 27
1
small cleanup patch
...PROTECTED_PW)
AC_DEFINE(DISABLE_SHADOW)
AC_DEFINE(HAVE_BOGUS_SYS_QUEUE_H)
- AC_DEFINE(BROKEN_SAVED_UIDS)
AC_CHECK_FUNCS(getluid setluid)
;;
*-dec-osf*)
--- openssh_cvs/pathnames.h.old Sat Feb 10 19:39:35 2001
+++ openssh_cvs/pathnames.h Mon Feb 26 19:08:19 2001
@@ -120,7 +120,9 @@
#ifndef _PATH_SFTP_SERVER
#define _PATH_SFTP_SERVER "/usr/libexec/sftp-server"
#endif
+#ifndef _PATH_LS
#define _PATH_LS "ls"
+#endif
/* path to login program */
#ifndef LOGIN_PROGRAM
2002 Jun 26
5
[PATCH] improved chroot handling
...======================================================
RCS file: /home/ncvs/src/crypto/openssh-portable/pathnames.h,v
retrieving revision 1.1.1.1
diff -u -r1.1.1.1 pathnames.h
--- pathnames.h 24 Jun 2002 22:46:13 -0000 1.1.1.1
+++ pathnames.h 26 Jun 2002 17:58:59 -0000
@@ -145,11 +145,6 @@
#define _PATH_SFTP_SERVER "/usr/libexec/sftp-server"
#endif
-/* chroot directory for unprivileged user when UsePrivilegeSeparation=yes */
-#ifndef _PATH_PRIVSEP_CHROOT_DIR
-#define _PATH_PRIVSEP_CHROOT_DIR "/var/empty"
-#endif
-
#ifndef _PATH_LS
#define _PATH_LS "ls"
#endif
Index: sshd...
2001 Oct 16
6
program-prefix does not work
...H=@srcdir@
! SSH_PROGRAM=@bindir@/ssh
! ASKPASS_PROGRAM=$(libexecdir)/ssh-askpass
! SFTP_SERVER=$(libexecdir)/sftp-server
PATHS= -DETCDIR=\"$(sysconfdir)\" \
-D_PATH_SSH_PROGRAM=\"$(SSH_PROGRAM)\" \
-D_PATH_SSH_ASKPASS_DEFAULT=\"$(ASKPASS_PROGRAM)\" \
-D_PATH_SFTP_SERVER=\"$(SFTP_SERVER)\" \
! -D_PATH_SSH_PIDDIR=\"$(piddir)\"
CC=@CC@
LD=@LD@
--- 12,31 ----
piddir=@piddir@
srcdir=@srcdir@
top_srcdir=@top_srcdir@
+ program_prefix=@program_prefix@
DESTDIR=
VPATH=@srcdir@
! SSH_PROGRAM=@bindir@/$(program_prefix)ssh
! ASKPASS_...