]> git.ipfire.org Git - thirdparty/HylaFAX.git/commitdiff
Fix stupid mistake in fd_bits macro in Dispatcher.c++ v40pl2-rjc8
authorRobert Colquhoun <rjc@trump.net.au>
Wed, 26 May 1999 23:45:20 +0000 (23:45 +0000)
committerRobert Colquhoun <rjc@trump.net.au>
Wed, 26 May 1999 23:45:20 +0000 (23:45 +0000)
util/Dispatcher.c++

index b0b6645c816616ee3cd96c9ef136ffa4de0ccf36..d4e7e80edf6d460b6116da3d811f61b2bc7fa02d 100644 (file)
@@ -45,7 +45,7 @@ Dispatcher* Dispatcher::_instance;
     XXX This is a bad hack to get it to work with glibc 2.1, should
     be removed and the code dependent on it fixed at the first opportunity.
 */
-#if defined __GLIBC__ >= 2 && __GLIBC_MINOR__ >= 1
+#if defined __GLIBC__ && __GLIBC__ >= 2 && __GLIBC_MINOR__ >= 1
 #define fds_bits __fds_bits
 #endif