summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--readconf.c4
2 files changed, 6 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 708e59917..50dfec1d5 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -13,6 +13,9 @@
13 implement HostbasedAuthentication (= RhostRSAAuthentication for ssh v2) 13 implement HostbasedAuthentication (= RhostRSAAuthentication for ssh v2)
14 similar to RhostRSAAuthentication unless you enable (the experimental) 14 similar to RhostRSAAuthentication unless you enable (the experimental)
15 HostbasedUsesNameFromPacketOnly option. please test. :) 15 HostbasedUsesNameFromPacketOnly option. please test. :)
16 - markus@cvs.openbsd.org 2001/04/12 19:39:27
17 [readconf.c]
18 typo
16 - (bal) Added openbsd-compat/inet_ntop.[ch] since HP/UX (and others) 19 - (bal) Added openbsd-compat/inet_ntop.[ch] since HP/UX (and others)
17 lack it. 20 lack it.
18 21
@@ -5035,4 +5038,4 @@
5035 - Wrote replacements for strlcpy and mkdtemp 5038 - Wrote replacements for strlcpy and mkdtemp
5036 - Released 1.0pre1 5039 - Released 1.0pre1
5037 5040
5038$Id: ChangeLog,v 1.1103 2001/04/12 23:34:34 mouring Exp $ 5041$Id: ChangeLog,v 1.1104 2001/04/12 23:36:05 mouring Exp $
diff --git a/readconf.c b/readconf.c
index 12b431d59..144a7602b 100644
--- a/readconf.c
+++ b/readconf.c
@@ -12,7 +12,7 @@
12 */ 12 */
13 13
14#include "includes.h" 14#include "includes.h"
15RCSID("$OpenBSD: readconf.c,v 1.72 2001/04/12 19:15:25 markus Exp $"); 15RCSID("$OpenBSD: readconf.c,v 1.73 2001/04/12 19:39:27 markus Exp $");
16 16
17#include "ssh.h" 17#include "ssh.h"
18#include "xmalloc.h" 18#include "xmalloc.h"
@@ -132,7 +132,7 @@ static struct {
132 { "pubkeyauthentication", oPubkeyAuthentication }, 132 { "pubkeyauthentication", oPubkeyAuthentication },
133 { "dsaauthentication", oPubkeyAuthentication }, /* alias */ 133 { "dsaauthentication", oPubkeyAuthentication }, /* alias */
134 { "rhostsrsaauthentication", oRhostsRSAAuthentication }, 134 { "rhostsrsaauthentication", oRhostsRSAAuthentication },
135 { "hostbaedauthentication", oHostbasedAuthentication }, 135 { "hostbasedauthentication", oHostbasedAuthentication },
136 { "challengeresponseauthentication", oChallengeResponseAuthentication }, 136 { "challengeresponseauthentication", oChallengeResponseAuthentication },
137 { "skeyauthentication", oChallengeResponseAuthentication }, /* alias */ 137 { "skeyauthentication", oChallengeResponseAuthentication }, /* alias */
138 { "tisauthentication", oChallengeResponseAuthentication }, /* alias */ 138 { "tisauthentication", oChallengeResponseAuthentication }, /* alias */