projects
/
systemd.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
53af260
)
resolved: actually check authenticated flag of SOA transaction
author
Michal Sekletar
<msekleta@redhat.com>
Wed, 20 Dec 2023 15:44:14 +0000
(16:44 +0100)
committer
Adrian Bunk
<bunk@debian.org>
Sun, 25 Aug 2024 19:05:15 +0000
(22:05 +0300)
Fixes #25676
Gbp-Pq: Name 0001-resolved-actually-check-authenticated-flag-of-SOA-tr.patch
src/resolve/resolved-dns-transaction.c
patch
|
blob
|
history
diff --git
a/src/resolve/resolved-dns-transaction.c
b/src/resolve/resolved-dns-transaction.c
index 37f0ddde6c4eef51ec859963d691bfb78a5a617c..99364ca1e4819c38cb990705ecc07fc29f8a4bc3 100644
(file)
--- a/
src/resolve/resolved-dns-transaction.c
+++ b/
src/resolve/resolved-dns-transaction.c
@@
-2446,7
+2446,7
@@
static int dns_transaction_requires_rrsig(DnsTransaction *t, DnsResourceRecord *
if (r == 0)
continue;
- return t->answer_authenticated;
+ return
d
t->answer_authenticated;
}
return true;
@@
-2475,7
+2475,7
@@
static int dns_transaction_requires_rrsig(DnsTransaction *t, DnsResourceRecord *
* RR for us. This means we are not at a zone cut. In
* this case, we require authentication if the SOA
* lookup was authenticated too. */
- return t->answer_authenticated;
+ return
d
t->answer_authenticated;
}
return true;