if (1) holds here, remove redundant if
authorChristian Grothoff <christian@grothoff.org>
Fri, 23 Jun 2017 22:09:51 +0000 (00:09 +0200)
committerChristian Grothoff <christian@grothoff.org>
Fri, 23 Jun 2017 22:09:51 +0000 (00:09 +0200)
src/exit/gnunet-daemon-exit.c

index c1000db6d87a5540595a4f9f9fcee6f8d987010b..7196a18446d121ad43fba3abb0b52b0d1b59928b 100644 (file)
@@ -3932,12 +3932,12 @@ run (void *cls,
       GNUNET_free (prefixed_regex);
     }
   }
-  if ((ipv4_enabled) || (ipv6_enabled))
-    helper_handle = GNUNET_HELPER_start (GNUNET_NO,
-                                        "gnunet-helper-exit",
-                                        exit_argv,
-                                        &message_token,
-                                        NULL, NULL);
+  helper_handle = GNUNET_HELPER_start (GNUNET_NO,
+                                      "gnunet-helper-exit",
+                                      exit_argv,
+                                      &message_token,
+                                      NULL,
+                                      NULL);
 }