diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 2001-06-23 02:34:34 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 2001-06-23 02:34:34 +0000 |
commit | d497a464cee4eb42110a471f5750a880ed238ab2 (patch) | |
tree | 3a76ffa9bf1762ce24e82b27617674235a32b45f /usr.bin/ssh/pathnames.h | |
parent | aaeec83f2d44736ab635a647a44d3e70d7110dd9 (diff) |
get rid of known_hosts2, use it for hostkey lookup, but do not modify.
Diffstat (limited to 'usr.bin/ssh/pathnames.h')
-rw-r--r-- | usr.bin/ssh/pathnames.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.bin/ssh/pathnames.h b/usr.bin/ssh/pathnames.h index 00734310ca9..b87bc6e2da3 100644 --- a/usr.bin/ssh/pathnames.h +++ b/usr.bin/ssh/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> @@ -20,6 +20,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" /* @@ -55,6 +56,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" /* |