summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorHeiko Schlittermann (HS12-RIPE) <hs@schlittermann.de>2021-05-11 10:48:17 +0200
committerHeiko Schlittermann (HS12-RIPE) <hs@schlittermann.de>2021-05-11 10:49:33 +0200
commit36237af9cff98b4df7a8535d0dc199e499abd986 (patch)
tree917aaf5f436a99d540256114460874cd7f5d6006 /src
parent79aa468aad79f9f1f46efe6a1b2340e7af6fe6f7 (diff)
TLS DANE to multiple recipients w/ different DNSSec status
Diffstat (limited to 'src')
-rw-r--r--src/src/deliver.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/src/deliver.c b/src/src/deliver.c
index f2187e22a..ba2948dfd 100644
--- a/src/src/deliver.c
+++ b/src/src/deliver.c
@@ -521,8 +521,12 @@ while (one && two)
else if (one->port != two->port)
return FALSE;
- /* Hosts matched */
+#ifdef SUPPORT_DANE
+ /* DNSSEC equality */
+ if (one->dnssec != two->dnssec) return FALSE;
+#endif
+ /* Hosts matched */
one = one->next;
two = two->next;
}