diff options
Diffstat (limited to 'clientloop.c')
-rw-r--r-- | clientloop.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/clientloop.c b/clientloop.c index a9c8a90f0..7df941375 100644 --- a/clientloop.c +++ b/clientloop.c | |||
@@ -114,6 +114,10 @@ | |||
114 | #include "ssherr.h" | 114 | #include "ssherr.h" |
115 | #include "hostfile.h" | 115 | #include "hostfile.h" |
116 | 116 | ||
117 | #ifdef GSSAPI | ||
118 | #include "ssh-gss.h" | ||
119 | #endif | ||
120 | |||
117 | /* import options */ | 121 | /* import options */ |
118 | extern Options options; | 122 | extern Options options; |
119 | 123 | ||
@@ -1596,6 +1600,15 @@ client_loop(int have_pty, int escape_char_arg, int ssh2_chan_id) | |||
1596 | /* Do channel operations unless rekeying in progress. */ | 1600 | /* Do channel operations unless rekeying in progress. */ |
1597 | if (!rekeying) { | 1601 | if (!rekeying) { |
1598 | channel_after_select(readset, writeset); | 1602 | channel_after_select(readset, writeset); |
1603 | |||
1604 | #ifdef GSSAPI | ||
1605 | if (options.gss_renewal_rekey && | ||
1606 | ssh_gssapi_credentials_updated(NULL)) { | ||
1607 | debug("credentials updated - forcing rekey"); | ||
1608 | need_rekeying = 1; | ||
1609 | } | ||
1610 | #endif | ||
1611 | |||
1599 | if (need_rekeying || packet_need_rekeying()) { | 1612 | if (need_rekeying || packet_need_rekeying()) { |
1600 | debug("need rekeying"); | 1613 | debug("need rekeying"); |
1601 | active_state->kex->done = 0; | 1614 | active_state->kex->done = 0; |