2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-30 14:07:59 +00:00

Add missing <isc/atomic.h> include to dns/badcache.c

The dns_badcache was pulling the <isc/atomic.h> header only indirectly
via <isc/rwlock.h>, add the direct include as the <isc/rwlock.h> no
longer pulls the header when pthread_rwlock is used.
This commit is contained in:
Ondřej Surý 2023-02-14 13:40:45 +01:00
parent 28fe8104ee
commit af12241f67
No known key found for this signature in database
GPG Key ID: 2820F37E873DEA41

View File

@ -16,6 +16,7 @@
#include <inttypes.h>
#include <stdbool.h>
#include <isc/atomic.h>
#include <isc/buffer.h>
#include <isc/hash.h>
#include <isc/log.h>