From ac9473580dcd401f8281305af98635cdaae9bf96 Mon Sep 17 00:00:00 2001 From: Damien Miller Date: Fri, 20 Nov 2015 12:35:41 +1100 Subject: [PATCH] fix multiple authentication using S/Key w/ privsep bz#2502, patch from Kevin Korb and feandil_ --- monitor.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/monitor.c b/monitor.c index 395a6f64e..4060a6ec9 100644 --- a/monitor.c +++ b/monitor.c @@ -1035,7 +1035,8 @@ mm_answer_skeyrespond(int sock, Buffer *m) debug3("%s: sending authenticated: %d", __func__, authok); mm_request_send(sock, MONITOR_ANS_SKEYRESPOND, m); - auth_method = "skey"; + auth_method = "keyboard-interactive"; + auth_submethod = "skey"; return (authok != 0); }