summaryrefslogtreecommitdiff
path: root/usr.bin/ssh/kex.h
diff options
context:
space:
mode:
authorMarkus Friedl <markus@cvs.openbsd.org>2001-06-23 02:34:34 +0000
committerMarkus Friedl <markus@cvs.openbsd.org>2001-06-23 02:34:34 +0000
commitd497a464cee4eb42110a471f5750a880ed238ab2 (patch)
tree3a76ffa9bf1762ce24e82b27617674235a32b45f /usr.bin/ssh/kex.h
parentaaeec83f2d44736ab635a647a44d3e70d7110dd9 (diff)
get rid of known_hosts2, use it for hostkey lookup, but do not modify.
Diffstat (limited to 'usr.bin/ssh/kex.h')
-rw-r--r--usr.bin/ssh/kex.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/kex.h b/usr.bin/ssh/kex.h
index 8758804c554..eca36b36a16 100644
--- a/usr.bin/ssh/kex.h
+++ b/usr.bin/ssh/kex.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: kex.h,v 1.22 2001/04/04 20:25:37 markus Exp $ */
+/* $OpenBSD: kex.h,v 1.23 2001/06/23 02:34:28 markus Exp $ */
/*
* Copyright (c) 2000 Markus Friedl. All rights reserved.
@@ -107,7 +107,7 @@ struct Kex {
int flags;
char *client_version_string;
char *server_version_string;
- int (*check_host_key)(Key *hostkey);
+ int (*verify_host_key)(Key *hostkey);
Key *(*load_host_key)(int type);
};