]> granicus.if.org Git - pdns/commitdiff
auth: correct syntax for GLIBC detection
authorJames Taylor <james@jtaylor.id.au>
Wed, 3 Jul 2019 10:31:19 +0000 (20:31 +1000)
committerGitHub <noreply@github.com>
Wed, 3 Jul 2019 10:31:19 +0000 (20:31 +1000)
This commit fixes invalid syntax introduced in #7980 which caused build failures on some platforms

pdns/receiver.cc

index 209db7af89410d2d7082543cbc1857ce462d157d..c7b2af93e48b0bd1f824403afd40721344784ee1 100644 (file)
@@ -354,7 +354,7 @@ static int guardian(int argc, char **argv)
   }
 }
 
-#ifdef __GLIBC__ && !defined(__UCLIBC__)
+#if defined(__GLIBC__) && !defined(__UCLIBC__)
 #include <execinfo.h>
 static void tbhandler(int num)
 {
@@ -386,7 +386,7 @@ int main(int argc, char **argv)
   s_programname="pdns";
   s_starttime=time(0);
 
-#ifdef __GLIBC__ && !defined(__UCLIBC__)
+#if defined(__GLIBC__) && !defined(__UCLIBC__)
   signal(SIGSEGV,tbhandler);
   signal(SIGFPE,tbhandler);
   signal(SIGABRT,tbhandler);
@@ -450,7 +450,7 @@ int main(int argc, char **argv)
     
     // we really need to do work - either standalone or as an instance
 
-#ifdef __GLIBC__ && !defined(__UCLIBC__)
+#if defined(__GLIBC__) && !defined(__UCLIBC__)
     if(!::arg().mustDo("traceback-handler")) {
       g_log<<Logger::Warning<<"Disabling traceback handler"<<endl;
       signal(SIGSEGV,SIG_DFL);