summaryrefslogtreecommitdiffhomepage
path: root/svr-session.c
diff options
context:
space:
mode:
authorMatt Johnston <matt@ucc.asn.au>2020-05-24 14:16:58 +0800
committerMatt Johnston <matt@ucc.asn.au>2020-05-24 14:16:58 +0800
commit701d43b8594365b55421e8bc4c53efa920c09ed5 (patch)
treeaceb60a25d26b8d5f3b132df40e59c9218f8b66e /svr-session.c
parent79bedc90a1efc9ba0b2c6565bd5264a7817e68d4 (diff)
send and handle SSH_MSG_EXT_INFO only at the correct point
- other fixes for rsa pubkey auth - only include ext-info handling when rsa pubkey auth is compiled
Diffstat (limited to 'svr-session.c')
-rw-r--r--svr-session.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/svr-session.c b/svr-session.c
index 8bc8744..6c3147f 100644
--- a/svr-session.c
+++ b/svr-session.c
@@ -337,9 +337,11 @@ static void svr_algos_initialise(void) {
algo->usable = 0;
}
#endif
+#if DROPBEAR_EXT_INFO
if (strcmp(algo->name, SSH_EXT_INFO_C) == 0) {
algo->usable = 0;
}
+#endif
}
}