From: Otto Moerbeek Date: Mon, 5 Jan 2026 15:26:23 +0000 (+0100) Subject: Process miod's review comments X-Git-Tag: rec-5.4.0-beta1~53^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f21c193a30291f8c6461490d2ced3a9697dec186;p=thirdparty%2Fpdns.git Process miod's review comments Signed-off-by: Otto Moerbeek --- diff --git a/pdns/Makefile.am b/pdns/Makefile.am index d429e782b5..891819a5ca 100644 --- a/pdns/Makefile.am +++ b/pdns/Makefile.am @@ -261,6 +261,7 @@ pdns_server_SOURCES = \ resolver.cc resolver.hh \ responsestats.cc responsestats.hh responsestats-auth.cc \ rfc2136handler.cc \ + sanitizer.hh \ secpoll-auth.cc secpoll-auth.hh \ secpoll.cc secpoll.hh \ serialtweaker.cc \ diff --git a/pdns/sanitizer.hh b/pdns/sanitizer.hh index 416415ec52..324742ccc5 100644 --- a/pdns/sanitizer.hh +++ b/pdns/sanitizer.hh @@ -17,7 +17,7 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + * Foundation, Inc. */ #pragma once @@ -34,17 +34,17 @@ #endif #if __SANITIZE_THREAD__ -#if defined __has_include +#if defined(__has_include) #if __has_include() #include #else /* __has_include() */ extern "C" void __tsan_acquire(void* addr); extern "C" void __tsan_release(void* addr); #endif /* __has_include() */ -#else /* defined __has_include */ +#else /* defined(__has_include) */ extern "C" void __tsan_acquire(void* addr); extern "C" void __tsan_release(void* addr); -#endif /* defined __has_include */ +#endif /* defined(__has_include) */ #else #define __tsan_acquire(x) #define __tsan_release(x)