From ddc0f3814881ea279a6b6d4d98e03afc60ae1ed7 Mon Sep 17 00:00:00 2001 From: Darren Tucker Date: Tue, 13 Feb 2018 09:10:46 +1100 Subject: Remove UNICOS support. The code required to support it is quite invasive to the mainline code that is synced with upstream and is an ongoing maintenance burden. Both the hardware and software are literal museum pieces these days and we could not find anyone still running OpenSSH on one. --- auth2.c | 8 -------- 1 file changed, 8 deletions(-) (limited to 'auth2.c') diff --git a/auth2.c b/auth2.c index 67b6b05e..c80911ae 100644 --- a/auth2.c +++ b/auth2.c @@ -349,13 +349,6 @@ userauth_finish(struct ssh *ssh, int authenticated, const char *method, } #endif -#ifdef _UNICOS - if (authenticated && cray_access_denied(authctxt->user)) { - authenticated = 0; - fatal("Access denied for user %s.", authctxt->user); - } -#endif /* _UNICOS */ - if (authenticated == 1) { /* turn off userauth */ ssh_dispatch_set(ssh, SSH2_MSG_USERAUTH_REQUEST, &dispatch_protocol_ignore); @@ -366,7 +359,6 @@ userauth_finish(struct ssh *ssh, int authenticated, const char *method, authctxt->success = 1; ssh_packet_set_log_preamble(ssh, "user %s", authctxt->user); } else { - /* Allow initial try of "none" auth without failure penalty */ if (!partial && !authctxt->server_caused_failure && (authctxt->attempt > 1 || strcmp(method, "none") != 0)) -- cgit v1.2.1