diff options
author | Colin Watson <cjwatson@debian.org> | 2016-12-28 20:01:00 +0000 |
---|---|---|
committer | Colin Watson <cjwatson@debian.org> | 2016-12-28 20:05:23 +0000 |
commit | 31ed1f715e4c1dd986c32b8c5e6687c185258db9 (patch) | |
tree | 42c51fb237be95e29bf4dd3b7edf9d77c5426522 /sshd.c | |
parent | 158b8db3ae5525e6c55368e7baadf4a7527b16be (diff) | |
parent | 624433c4fff092e3aaaff6aa8954eb93e0387c44 (diff) |
Avoid calling into Kerberos libraries from ssh_gssapi_server_mechanisms in the privsep monitor.
Diffstat (limited to 'sshd.c')
-rw-r--r-- | sshd.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -547,7 +547,7 @@ privsep_preauth_child(void) | |||
547 | 547 | ||
548 | #ifdef GSSAPI | 548 | #ifdef GSSAPI |
549 | /* Cache supported mechanism OIDs for later use */ | 549 | /* Cache supported mechanism OIDs for later use */ |
550 | if (options.gss_authentication) | 550 | if (options.gss_authentication || options.gss_keyex) |
551 | ssh_gssapi_prepare_supported_oids(); | 551 | ssh_gssapi_prepare_supported_oids(); |
552 | #endif | 552 | #endif |
553 | 553 | ||