use ifdef instead of if for __linux__ and BSD
authorng0 <ng0@n0.is>
Wed, 20 Nov 2019 14:53:33 +0000 (14:53 +0000)
committerng0 <ng0@n0.is>
Wed, 20 Nov 2019 14:53:33 +0000 (14:53 +0000)
src/nse/gnunet-service-nse.c
src/testbed/gnunet-service-testbed_cpustatus.c
src/transport/plugin_transport_udp_broadcasting.c
src/util/network.c
src/util/os_installation.c
src/util/test_bio.c

index fa9a2e9502b4ebaf776c2262721d8bc7114eec0c..3e72be1c56af41caee196033febd4ccf9548363e 100644 (file)
@@ -75,7 +75,7 @@
   (GNUNET_MQ_PRIO_BACKGROUND | GNUNET_MQ_PREF_UNRELIABLE   \
    | GNUNET_MQ_PREF_CORK_ALLOWED)
 
-#if BSD
+#ifdef BSD
 #define log2(a) (log (a) / log (2))
 #endif
 
index cd18784679a4de412c3e58a38638249fa21990b8..e96449deff7a30160104170aa267651b54d8fe28 100644 (file)
@@ -43,7 +43,7 @@
 #include <kvm.h>
 #endif
 #endif
-#if BSD
+#ifdef BSD
 #if HAVE_KVM_H
 #include <kvm.h>
 #endif
index 5e72fad096e7837d0b2cbd9f482804270e331b68..a65f5bd2f6c0cb77c5061e0332bee0614bc0d82f 100644 (file)
@@ -41,7 +41,7 @@
 #define LOG(kind, ...) GNUNET_log_from (kind, "transport-udp", __VA_ARGS__)
 
 /* *********** Cryogenic ********** */
-#if __linux__
+#ifdef __linux__
 #include <sys/stat.h>
 #include <fcntl.h>
 
@@ -92,7 +92,7 @@ struct BroadcastAddress
 
   socklen_t addrlen;
 
-#if __linux__
+#ifdef __linux__
   /**
    * Cryogenic handle.
    */
@@ -277,7 +277,7 @@ udp_ipv4_broadcast_send (void *cls)
     }
   }
 
-#if __linux__
+#ifdef __linux__
   /*
    * Cryogenic
    */
@@ -359,7 +359,7 @@ udp_ipv6_broadcast_send (void *cls)
          GNUNET_a2s ((const struct sockaddr *) &plugin->ipv6_multicast_address,
                      sizeof(struct sockaddr_in6)));
   }
-#if __linux__
+#ifdef __linux__
   /*
    * Cryogenic
    */
@@ -448,7 +448,7 @@ iface_proc (void *cls,
       (NULL != plugin->sockv4) &&
       (addrlen == sizeof(struct sockaddr_in)))
   {
-#if __linux__
+#ifdef __linux__
     /*
      * setup Cryogenic FD for ipv4 broadcasting
      */
@@ -503,7 +503,7 @@ iface_proc (void *cls,
     }
     else
     {
-#if __linux__
+#ifdef __linux__
       /*
        * setup Cryogenic FD for ipv6 broadcasting
        */
@@ -632,7 +632,7 @@ stop_broadcast (struct Plugin *plugin)
         }
       }
 
-#if __linux__
+#ifdef __linux__
       GNUNET_DISK_file_close (p->cryogenic_fd);
 #endif
       GNUNET_CONTAINER_DLL_remove (plugin->broadcast_head,
index 52ae3d2c7a41c66ee7b195bdb687508308deadb4..223ce20803d1daf2ec852391f14e8c23b26b8bd6 100644 (file)
@@ -962,7 +962,7 @@ GNUNET_NETWORK_socket_disable_corking (struct GNUNET_NETWORK_Handle *desc)
 {
   int ret = 0;
 
-#if __linux__
+#ifdef __linux__
   int value = 0;
 
   if (0 !=
index 846ceeeece04861ef105e6c5dffc48a9231bd3fc..990acede405e47be914f4622981a1ac296405cc0 100644 (file)
@@ -134,7 +134,7 @@ GNUNET_OS_init (const struct GNUNET_OS_ProjectData *pd)
 }
 
 
-#if __linux__
+#ifdef __linux__
 /**
  * Try to determine path by reading /proc/PID/exe
  *
@@ -383,7 +383,7 @@ os_get_gnunet_path ()
 
   if (NULL != (ret = get_path_from_GNUNET_PREFIX ()))
     return ret;
-#if __linux__
+#ifdef __linux__
   if (NULL != (ret = get_path_from_proc_maps ()))
     return ret;
   /* try path *first*, before /proc/exe, as /proc/exe can be wrong */
@@ -421,7 +421,7 @@ os_get_exec_path ()
 {
   char *ret = NULL;
 
-#if __linux__
+#ifdef __linux__
   if (NULL != (ret = get_path_from_proc_exe ()))
     return ret;
 #endif
index 13ae1cf56336ee0ebaea2fcab184dd1675390413..53b45c23a35d10b3d2b2473060bb0bad77f4e979 100644 (file)
@@ -200,7 +200,7 @@ test_bigmeta_rw ()
 static int
 test_directory_r ()
 {
-#if __linux__
+#ifdef __linux__
   char *msg;
   char readResult[200];
   struct GNUNET_BIO_ReadHandle *fileR;