aboutsummaryrefslogtreecommitdiff
path: root/src/exit
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2017-06-24 00:09:51 +0200
committerChristian Grothoff <christian@grothoff.org>2017-06-24 00:09:51 +0200
commitac3c4187299d8cba8453017fcec1292c00b697ee (patch)
tree3263dc96ccd4429ba43f06588113503608bc4c8a /src/exit
parent7ff73348021ab84f2a3447c5c891f6b635a5ba00 (diff)
downloadgnunet-ac3c4187299d8cba8453017fcec1292c00b697ee.tar.gz
gnunet-ac3c4187299d8cba8453017fcec1292c00b697ee.zip
if (1) holds here, remove redundant if
Diffstat (limited to 'src/exit')
-rw-r--r--src/exit/gnunet-daemon-exit.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/exit/gnunet-daemon-exit.c b/src/exit/gnunet-daemon-exit.c
index c1000db6d..7196a1844 100644
--- a/src/exit/gnunet-daemon-exit.c
+++ b/src/exit/gnunet-daemon-exit.c
@@ -3932,12 +3932,12 @@ run (void *cls,
3932 GNUNET_free (prefixed_regex); 3932 GNUNET_free (prefixed_regex);
3933 } 3933 }
3934 } 3934 }
3935 if ((ipv4_enabled) || (ipv6_enabled)) 3935 helper_handle = GNUNET_HELPER_start (GNUNET_NO,
3936 helper_handle = GNUNET_HELPER_start (GNUNET_NO, 3936 "gnunet-helper-exit",
3937 "gnunet-helper-exit", 3937 exit_argv,
3938 exit_argv, 3938 &message_token,
3939 &message_token, 3939 NULL,
3940 NULL, NULL); 3940 NULL);
3941} 3941}
3942 3942
3943 3943