Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/crypto/external/bsd/openssh/dist OpenSSH: Restore ChallengeR...



details:   https://anonhg.NetBSD.org/src/rev/76cb80bc47b5
branches:  trunk
changeset: 987467:76cb80bc47b5
user:      kim <kim%NetBSD.org@localhost>
date:      Mon Sep 27 11:05:50 2021 +0000

description:
OpenSSH: Restore ChallengeResponseAuthentication as an alias

OpenSSH 8.7 has deprecated ChallengeResponseAuthentication, but not removed
it. It is now an alias for KbdInteractiveAuthentication (as are the prior
aliases of ChallengeResponseAuthentication).

I think this chunk was accidentally dropped in the OpenSSH 8.7 merge.

diffstat:

 crypto/external/bsd/openssh/dist/readconf.c |  7 +++++--
 1 files changed, 5 insertions(+), 2 deletions(-)

diffs (28 lines):

diff -r b05f228882d9 -r 76cb80bc47b5 crypto/external/bsd/openssh/dist/readconf.c
--- a/crypto/external/bsd/openssh/dist/readconf.c       Mon Sep 27 09:54:52 2021 +0000
+++ b/crypto/external/bsd/openssh/dist/readconf.c       Mon Sep 27 11:05:50 2021 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: readconf.c,v 1.35 2021/09/02 11:26:18 christos Exp $   */
+/*     $NetBSD: readconf.c,v 1.36 2021/09/27 11:05:50 kim Exp $        */
 /* $OpenBSD: readconf.c,v 1.361 2021/07/23 04:04:52 djm Exp $ */
 
 /*
@@ -15,7 +15,7 @@
  */
 
 #include "includes.h"
-__RCSID("$NetBSD: readconf.c,v 1.35 2021/09/02 11:26:18 christos Exp $");
+__RCSID("$NetBSD: readconf.c,v 1.36 2021/09/27 11:05:50 kim Exp $");
 #include <sys/types.h>
 #include <sys/stat.h>
 #include <sys/socket.h>
@@ -248,6 +248,9 @@
        { "passwordauthentication", oPasswordAuthentication },
        { "kbdinteractiveauthentication", oKbdInteractiveAuthentication },
        { "kbdinteractivedevices", oKbdInteractiveDevices },
+       { "challengeresponseauthentication", oKbdInteractiveAuthentication }, /* alias */
+       { "skeyauthentication", oKbdInteractiveAuthentication }, /* alias */
+       { "tisauthentication", oKbdInteractiveAuthentication },  /* alias */
        { "pubkeyauthentication", oPubkeyAuthentication },
        { "dsaauthentication", oPubkeyAuthentication },             /* alias */
        { "hostbasedauthentication", oHostbasedAuthentication },



Home | Main Index | Thread Index | Old Index