diff options
author | Ben Lindstrom <mouring@eviladmin.org> | 2001-06-25 06:37:41 +0200 |
---|---|---|
committer | Ben Lindstrom <mouring@eviladmin.org> | 2001-06-25 06:37:41 +0200 |
commit | d6481ea49ab5999e00cc2a2fd7b6a1d779f4c598 (patch) | |
tree | c89fd81312f3b95fe22bcaad56cdb1b2a2dd822a /pathnames.h | |
parent | - deraadt@cvs.openbsd.org 2001/06/23 02:33:05 (diff) | |
download | openssh-d6481ea49ab5999e00cc2a2fd7b6a1d779f4c598.tar.xz openssh-d6481ea49ab5999e00cc2a2fd7b6a1d779f4c598.zip |
- markus@cvs.openbsd.org 2001/06/23 02:34:33
[kexdh.c kexgex.c kex.h pathnames.h readconf.c servconf.h ssh.1
sshconnect1.c sshconnect2.c sshconnect.c sshconnect.h sshd.8]
get rid of known_hosts2, use it for hostkey lookup, but do not
modify.
Diffstat (limited to 'pathnames.h')
-rw-r--r-- | pathnames.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/pathnames.h b/pathnames.h index 014f62b3e..54c2c1319 100644 --- a/pathnames.h +++ b/pathnames.h @@ -1,4 +1,4 @@ -/* $OpenBSD: pathnames.h,v 1.8 2001/06/22 21:55:49 markus Exp $ */ +/* $OpenBSD: pathnames.h,v 1.9 2001/06/23 02:34:30 markus Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> @@ -25,6 +25,7 @@ * world-readable. */ #define _PATH_SSH_SYSTEM_HOSTFILE ETCDIR "/ssh_known_hosts" +/* backward compat for protocol 2 */ #define _PATH_SSH_SYSTEM_HOSTFILE2 ETCDIR "/ssh_known_hosts2" /* @@ -62,6 +63,7 @@ * contain anything particularly secret. */ #define _PATH_SSH_USER_HOSTFILE "~/.ssh/known_hosts" +/* backward compat for protocol 2 */ #define _PATH_SSH_USER_HOSTFILE2 "~/.ssh/known_hosts2" /* |