aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/pkt.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/pkt.c b/src/pkt.c
index fd4614f..6b6336a 100644
--- a/src/pkt.c
+++ b/src/pkt.c
@@ -267,8 +267,10 @@ void handle_packet(char *buf, unsigned bytes, int is_pcap, struct sockaddr_in *a
"SHA512" : "MD5"));
if ((!opts.force_sha512 && challenge->digest.hash_type == HT_MD5 &&
validate_challenge_md5(cur->challenge, &challenge->digest)) ||
+#ifdef ENABLE_SHA512
(challenge->digest.hash_type == HT_SHA512 &&
validate_challenge_sha512(cur->challenge, &challenge->digest)) ||
+#endif
cur->authenticated)
{
pt_log(kLog_verbose, "Remote end authenticated successfully.\n");