diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2021-09-06 00:36:02 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2021-09-06 00:36:02 +0000 |
commit | 3e62188ff61c1a74c84e532294721525a9c5efa8 (patch) | |
tree | 40e596b79565ab454b9209833920500ce8f36d3b /usr.bin | |
parent | 37f7911bcd8b924fb5914232fc9d5af49fedd4ce (diff) |
revision 1.381 neglected to remove sChallengeResponseAuthentication
from the enum. Noticed by christos@zoulas.com. OK dtucker@
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/ssh/servconf.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/usr.bin/ssh/servconf.c b/usr.bin/ssh/servconf.c index e28fa51b5f0..03e1fe4d851 100644 --- a/usr.bin/ssh/servconf.c +++ b/usr.bin/ssh/servconf.c @@ -1,5 +1,5 @@ -/* $OpenBSD: servconf.c,v 1.381 2021/07/02 05:11:21 dtucker Exp $ */ +/* $OpenBSD: servconf.c,v 1.382 2021/09/06 00:36:01 millert Exp $ */ /* * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland * All rights reserved @@ -462,9 +462,8 @@ typedef enum { sPort, sHostKeyFile, sLoginGraceTime, sPermitRootLogin, sLogFacility, sLogLevel, sLogVerbose, sKerberosAuthentication, sKerberosOrLocalPasswd, sKerberosTicketCleanup, - sKerberosGetAFSToken, sChallengeResponseAuthentication, - sPasswordAuthentication, sKbdInteractiveAuthentication, - sListenAddress, sAddressFamily, + sKerberosGetAFSToken, sPasswordAuthentication, + sKbdInteractiveAuthentication, sListenAddress, sAddressFamily, sPrintMotd, sPrintLastLog, sIgnoreRhosts, sX11Forwarding, sX11DisplayOffset, sX11UseLocalhost, sPermitTTY, sStrictModes, sEmptyPasswd, sTCPKeepAlive, |