Displaying 4 results from an estimated 4 matches for "_path_ls".
2001 Feb 27
1
small cleanup patch
configure.in: Open Server 5 doesn't need AC_DEFINE(BROKEN_SAVED_UIDS)
pathnames.h: add #ifndef _PATH_LS to fix
"src/pathnames.h", line 123: warning: macro redefined: _PATH_LS
--
Tim Rice Multitalents (707) 887-1469
tim at multitalents.net
-------------- next part --------------
--- openssh_cvs/configure.in.old Mon Feb 26 18:47:57 2001
+++ openssh_cvs/configure.in Mon Feb 26 18:50:28...
2002 Jun 26
5
[PATCH] improved chroot handling
...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.c
===================================================================
RCS file: /home/ncvs/src/crypto/openssh-portable/sshd.c,v
retrieving revision 1.1.1.1
diff -u -r1.1.1.1 sshd.c
--- sshd.c 24 Jun 2002 22:46:20 -0000 1.1.1.1
+++ sshd.c 26 Jun...
2002 Mar 12
0
OpenSSH 3.1: ssh-rand-helper
...*********
*** 139,144 ****
--- 139,148 ----
#ifndef _PATH_SFTP_SERVER
#define _PATH_SFTP_SERVER "/usr/libexec/sftp-server"
#endif
+ /* for ssh-rand-helper */
+ #ifndef _PATH_SSH_RAND_HELPER
+ #define _PATH_SSH_RAND_HELPER "/usr/libexec/ssh-rand-helper"
+ #endif
#ifndef _PATH_LS
#define _PATH_LS "ls"
#endif
BTW, there seems to be a strange problem with starting sshd from a
watchdog-script started from inittab. I always got a
ssh-rand-helper child produced insufficient data
This dissappeared, when I redirected stdout and stderr of the
startup-script into...
2001 Oct 16
6
program-prefix does not work
...SH_ASKPASS_DEFAULT "/usr/X11R6/bin/" _PROGRAM_PREFIX "ssh-askpass"
#endif
/* xauth for X11 forwarding */
***************
*** 130,136 ****
/* for sftp */
#ifndef _PATH_SFTP_SERVER
! #define _PATH_SFTP_SERVER "/usr/libexec/sftp-server"
#endif
#ifndef _PATH_LS
#define _PATH_LS "ls"
--- 137,143 ----
/* for sftp */
#ifndef _PATH_SFTP_SERVER
! #define _PATH_SFTP_SERVER "/usr/libexec/" _PROGRAM_PREFIX "sftp-server"
#endif
#ifndef _PATH_LS
#define _PATH_LS "ls"
***************
*** 147,161 ****...