diff options
author | Darren Tucker <dtucker@dtucker.net> | 2018-02-13 09:10:46 +1100 |
---|---|---|
committer | Darren Tucker <dtucker@dtucker.net> | 2018-02-15 20:04:02 +1100 |
commit | ddc0f3814881ea279a6b6d4d98e03afc60ae1ed7 (patch) | |
tree | d09efd846cd29f2dfeb0acd04756294e4f6761c9 /auth2.c | |
parent | 174bed686968494723e6db881208cc4dac0d020f (diff) |
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.
Diffstat (limited to 'auth2.c')
-rw-r--r-- | auth2.c | 8 |
1 files changed, 0 insertions, 8 deletions
@@ -349,13 +349,6 @@ userauth_finish(struct ssh *ssh, int authenticated, const char *method, | |||
349 | } | 349 | } |
350 | #endif | 350 | #endif |
351 | 351 | ||
352 | #ifdef _UNICOS | ||
353 | if (authenticated && cray_access_denied(authctxt->user)) { | ||
354 | authenticated = 0; | ||
355 | fatal("Access denied for user %s.", authctxt->user); | ||
356 | } | ||
357 | #endif /* _UNICOS */ | ||
358 | |||
359 | if (authenticated == 1) { | 352 | if (authenticated == 1) { |
360 | /* turn off userauth */ | 353 | /* turn off userauth */ |
361 | ssh_dispatch_set(ssh, SSH2_MSG_USERAUTH_REQUEST, &dispatch_protocol_ignore); | 354 | 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, | |||
366 | authctxt->success = 1; | 359 | authctxt->success = 1; |
367 | ssh_packet_set_log_preamble(ssh, "user %s", authctxt->user); | 360 | ssh_packet_set_log_preamble(ssh, "user %s", authctxt->user); |
368 | } else { | 361 | } else { |
369 | |||
370 | /* Allow initial try of "none" auth without failure penalty */ | 362 | /* Allow initial try of "none" auth without failure penalty */ |
371 | if (!partial && !authctxt->server_caused_failure && | 363 | if (!partial && !authctxt->server_caused_failure && |
372 | (authctxt->attempt > 1 || strcmp(method, "none") != 0)) | 364 | (authctxt->attempt > 1 || strcmp(method, "none") != 0)) |