summaryrefslogtreecommitdiff
path: root/clientloop.c
diff options
context:
space:
mode:
Diffstat (limited to 'clientloop.c')
-rw-r--r--clientloop.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/clientloop.c b/clientloop.c
index de7979366..ef97859f1 100644
--- a/clientloop.c
+++ b/clientloop.c
@@ -111,6 +111,10 @@
111#include "msg.h" 111#include "msg.h"
112#include "roaming.h" 112#include "roaming.h"
113 113
114#ifdef GSSAPI
115#include "ssh-gss.h"
116#endif
117
114/* import options */ 118/* import options */
115extern Options options; 119extern Options options;
116 120
@@ -1483,6 +1487,15 @@ client_loop(int have_pty, int escape_char_arg, int ssh2_chan_id)
1483 /* Do channel operations unless rekeying in progress. */ 1487 /* Do channel operations unless rekeying in progress. */
1484 if (!rekeying) { 1488 if (!rekeying) {
1485 channel_after_select(readset, writeset); 1489 channel_after_select(readset, writeset);
1490
1491#ifdef GSSAPI
1492 if (options.gss_renewal_rekey &&
1493 ssh_gssapi_credentials_updated(GSS_C_NO_CONTEXT)) {
1494 debug("credentials updated - forcing rekey");
1495 need_rekeying = 1;
1496 }
1497#endif
1498
1486 if (need_rekeying || packet_need_rekeying()) { 1499 if (need_rekeying || packet_need_rekeying()) {
1487 debug("need rekeying"); 1500 debug("need rekeying");
1488 xxx_kex->done = 0; 1501 xxx_kex->done = 0;