=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/ssh/pathnames.h,v retrieving revision 1.9.2.4 retrieving revision 1.10 diff -u -r1.9.2.4 -r1.10 --- src/usr.bin/ssh/pathnames.h 2002/06/22 07:23:17 1.9.2.4 +++ src/usr.bin/ssh/pathnames.h 2001/12/08 17:49:28 1.10 @@ -1,4 +1,4 @@ -/* $OpenBSD: pathnames.h,v 1.9.2.4 2002/06/22 07:23:17 miod Exp $ */ +/* $OpenBSD: pathnames.h,v 1.10 2001/12/08 17:49:28 stevesk Exp $ */ /* * Author: Tatu Ylonen @@ -13,26 +13,25 @@ */ #define ETCDIR "/etc" -#define SSHDIR ETCDIR #define _PATH_SSH_PIDDIR "/var/run" /* * System-wide file containing host keys of known hosts. This file should be * world-readable. */ -#define _PATH_SSH_SYSTEM_HOSTFILE SSHDIR "/ssh_known_hosts" +#define _PATH_SSH_SYSTEM_HOSTFILE ETCDIR "/ssh_known_hosts" /* backward compat for protocol 2 */ -#define _PATH_SSH_SYSTEM_HOSTFILE2 SSHDIR "/ssh_known_hosts2" +#define _PATH_SSH_SYSTEM_HOSTFILE2 ETCDIR "/ssh_known_hosts2" /* * Of these, ssh_host_key must be readable only by root, whereas ssh_config * should be world-readable. */ -#define _PATH_SERVER_CONFIG_FILE SSHDIR "/sshd_config" -#define _PATH_HOST_CONFIG_FILE SSHDIR "/ssh_config" -#define _PATH_HOST_KEY_FILE SSHDIR "/ssh_host_key" -#define _PATH_HOST_DSA_KEY_FILE SSHDIR "/ssh_host_dsa_key" -#define _PATH_HOST_RSA_KEY_FILE SSHDIR "/ssh_host_rsa_key" +#define _PATH_SERVER_CONFIG_FILE ETCDIR "/sshd_config" +#define _PATH_HOST_CONFIG_FILE ETCDIR "/ssh_config" +#define _PATH_HOST_KEY_FILE ETCDIR "/ssh_host_key" +#define _PATH_HOST_DSA_KEY_FILE ETCDIR "/ssh_host_dsa_key" +#define _PATH_HOST_RSA_KEY_FILE ETCDIR "/ssh_host_rsa_key" #define _PATH_DH_MODULI ETCDIR "/moduli" /* Backwards compatibility */ #define _PATH_DH_PRIMES ETCDIR "/primes" @@ -96,7 +95,7 @@ * use. xauth will be run if neither of these exists. */ #define _PATH_SSH_USER_RC ".ssh/rc" -#define _PATH_SSH_SYSTEM_RC SSHDIR "/sshrc" +#define _PATH_SSH_SYSTEM_RC ETCDIR "/sshrc" /* * Ssh-only version of /etc/hosts.equiv. Additionally, the daemon may use @@ -110,9 +109,6 @@ */ #define _PATH_SSH_ASKPASS_DEFAULT "/usr/X11R6/bin/ssh-askpass" -/* Location of ssh-keysign for hostbased authentication */ -#define _PATH_SSH_KEY_SIGN "/usr/libexec/ssh-keysign" - /* xauth for X11 forwarding */ #define _PATH_XAUTH "/usr/X11R6/bin/xauth" @@ -125,6 +121,3 @@ /* for sftp */ #define _PATH_SFTP_SERVER "/usr/libexec/sftp-server" #define _PATH_LS "ls" - -/* chroot directory for unprivileged user when UsePrivilegeSeparation=yes */ -#define _PATH_PRIVSEP_CHROOT_DIR "/var/empty"