diff options
author | Christian Grothoff <christian@grothoff.org> | 2013-04-15 15:00:53 +0000 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2013-04-15 15:00:53 +0000 |
commit | 8a6448fb4f4dbfab07995028ce8f2516c563cac3 (patch) | |
tree | b73a10218990841af0d58f2e433752f8092c4aec | |
parent | 4e668e13d72a1fc55abfe69578c0486fdf02cd78 (diff) |
-no boolean
-rw-r--r-- | contrib/timeout_watchdog_w32.c | 2 | ||||
-rw-r--r-- | src/dns/gnunet-service-dns.c | 2 | ||||
-rw-r--r-- | src/exit/gnunet-daemon-exit.c | 2 | ||||
-rw-r--r-- | src/gns/test_gns_proxy.c | 4 | ||||
-rw-r--r-- | src/nat/nat.c | 4 | ||||
-rw-r--r-- | src/nat/nat_auto.c | 6 | ||||
-rw-r--r-- | src/nat/nat_mini.c | 4 | ||||
-rw-r--r-- | src/nat/test_nat_test.c | 2 | ||||
-rw-r--r-- | src/pt/test_gns_vpn.c | 6 | ||||
-rw-r--r-- | src/pt/test_gnunet_vpn.c | 4 | ||||
-rw-r--r-- | src/transport/plugin_transport_wlan.c | 2 | ||||
-rw-r--r-- | src/util/os_priority.c | 6 | ||||
-rw-r--r-- | src/vpn/gnunet-service-vpn.c | 2 |
13 files changed, 23 insertions, 23 deletions
diff --git a/contrib/timeout_watchdog_w32.c b/contrib/timeout_watchdog_w32.c index 46a6157554..63082fa02a 100644 --- a/contrib/timeout_watchdog_w32.c +++ b/contrib/timeout_watchdog_w32.c @@ -150,7 +150,7 @@ main (int argc, char *argv[]) memset (&start, 0, sizeof (start)); start.cb = sizeof (start); - if (!CreateProcessW (wpath, wcmd, NULL, NULL, TRUE, CREATE_SUSPENDED, + if (!CreateProcessW (wpath, wcmd, NULL, NULL, GNUNET_YES, CREATE_SUSPENDED, NULL, NULL, &start, &proc)) { wprintf (L"Failed to get spawn process `%s' with arguments `%s': %lu\n", wpath, wcmd, GetLastError ()); diff --git a/src/dns/gnunet-service-dns.c b/src/dns/gnunet-service-dns.c index a2d5354de8..b7ecee0d78 100644 --- a/src/dns/gnunet-service-dns.c +++ b/src/dns/gnunet-service-dns.c @@ -1043,7 +1043,7 @@ run (void *cls, struct GNUNET_SERVER_Handle *server, cfg = cfg_; binary = GNUNET_OS_get_libexec_binary_path ("gnunet-helper-dns"); if (GNUNET_YES != - GNUNET_OS_check_helper_binary (binary, TRUE, NULL)) + GNUNET_OS_check_helper_binary (binary, GNUNET_YES, NULL)) { GNUNET_log (GNUNET_ERROR_TYPE_ERROR, _("`%s' must be installed SUID, refusing to run\n"), diff --git a/src/exit/gnunet-daemon-exit.c b/src/exit/gnunet-daemon-exit.c index 2c5bb1ecd6..20f240b0d3 100644 --- a/src/exit/gnunet-daemon-exit.c +++ b/src/exit/gnunet-daemon-exit.c @@ -3344,7 +3344,7 @@ run (void *cls, char *const *args GNUNET_UNUSED, { binary = GNUNET_OS_get_libexec_binary_path ("gnunet-helper-exit"); if (GNUNET_YES != - GNUNET_OS_check_helper_binary (binary, TRUE, NULL)) // FIXME: CF: add test-parameters + GNUNET_OS_check_helper_binary (binary, GNUNET_YES, NULL)) // FIXME: CF: add test-parameters { GNUNET_free (binary); GNUNET_log (GNUNET_ERROR_TYPE_ERROR, diff --git a/src/gns/test_gns_proxy.c b/src/gns/test_gns_proxy.c index 68830ca7f7..3ec2bf95cc 100644 --- a/src/gns/test_gns_proxy.c +++ b/src/gns/test_gns_proxy.c @@ -446,13 +446,13 @@ main (int argc, char *const *argv) { char *binary; - if (GNUNET_SYSERR == GNUNET_OS_check_helper_binary ("gnunet-gns-proxy", FALSE, NULL)) + if (GNUNET_SYSERR == GNUNET_OS_check_helper_binary ("gnunet-gns-proxy", GNUNET_NO, NULL)) { fprintf (stderr, "Proxy binary not in PATH... skipping!\n"); return 0; } binary = GNUNET_OS_get_libexec_binary_path ("gnunet-helper-dns"); - if (GNUNET_YES != GNUNET_OS_check_helper_binary (binary, TRUE, NULL)) + if (GNUNET_YES != GNUNET_OS_check_helper_binary (binary, GNUNET_YES, NULL)) { fprintf (stderr, "DNS helper binary has wrong permissions... skipping!\n"); GNUNET_free (binary); diff --git a/src/nat/nat.c b/src/nat/nat.c index fd9d5eaa0a..e1ec880280 100644 --- a/src/nat/nat.c +++ b/src/nat/nat.c @@ -1171,7 +1171,7 @@ GNUNET_NAT_register (const struct GNUNET_CONFIGURATION_Handle *cfg, int is_tcp, binary = GNUNET_OS_get_libexec_binary_path ("gnunet-helper-nat-server"); if ((h->behind_nat == GNUNET_YES) && (GNUNET_YES == h->enable_nat_server) && (GNUNET_YES != - GNUNET_OS_check_helper_binary (binary, TRUE, NULL))) // FIXME: CF: add test-parameters + GNUNET_OS_check_helper_binary (binary, GNUNET_YES, NULL))) // FIXME: CF: add test-parameters { h->enable_nat_server = GNUNET_NO; LOG (GNUNET_ERROR_TYPE_WARNING, @@ -1183,7 +1183,7 @@ GNUNET_NAT_register (const struct GNUNET_CONFIGURATION_Handle *cfg, int is_tcp, binary = GNUNET_OS_get_libexec_binary_path ("gnunet-helper-nat-client"); if ((GNUNET_YES == h->enable_nat_client) && (GNUNET_YES != - GNUNET_OS_check_helper_binary (binary, TRUE, NULL))) // FIXME: CF: add test-parameters + GNUNET_OS_check_helper_binary (binary, GNUNET_YES, NULL))) // FIXME: CF: add test-parameters { h->enable_nat_client = GNUNET_NO; LOG (GNUNET_ERROR_TYPE_WARNING, diff --git a/src/nat/nat_auto.c b/src/nat/nat_auto.c index f382a9ac64..edb2bb8417 100644 --- a/src/nat/nat_auto.c +++ b/src/nat/nat_auto.c @@ -392,7 +392,7 @@ test_upnpc (struct GNUNET_NAT_AutoHandle *ah) /* test if upnpc is available */ have_upnpc = (GNUNET_SYSERR != - GNUNET_OS_check_helper_binary ("upnpc", FALSE, NULL)); + GNUNET_OS_check_helper_binary ("upnpc", GNUNET_NO, NULL)); /* FIXME: test if upnpc is actually working, that is, if transports start to work once we use UPnP */ GNUNET_log (GNUNET_ERROR_TYPE_INFO, @@ -426,7 +426,7 @@ test_icmp_server (struct GNUNET_NAT_AutoHandle *ah) (GNUNET_YES == GNUNET_CONFIGURATION_get_value_yesno (ah->cfg, "nat", "BEHIND_NAT")) && (GNUNET_YES == - GNUNET_OS_check_helper_binary (binary, TRUE, NULL))); // FIXME: CF: add test-parameters + GNUNET_OS_check_helper_binary (binary, GNUNET_YES, NULL))); // FIXME: CF: add test-parameters GNUNET_free_non_null (tmp); GNUNET_free (binary); GNUNET_log (GNUNET_ERROR_TYPE_INFO, @@ -461,7 +461,7 @@ test_icmp_client (struct GNUNET_NAT_AutoHandle *ah) (GNUNET_YES != GNUNET_CONFIGURATION_get_value_yesno (ah->cfg, "nat", "BEHIND_NAT")) && (GNUNET_YES == - GNUNET_OS_check_helper_binary (binary, TRUE, NULL))); // FIXME: CF: add test-parameters + GNUNET_OS_check_helper_binary (binary, GNUNET_YES, NULL))); // FIXME: CF: add test-parameters GNUNET_free_non_null (tmp); GNUNET_free (binary); GNUNET_log (GNUNET_ERROR_TYPE_INFO, diff --git a/src/nat/nat_mini.c b/src/nat/nat_mini.c index 29b26ee280..dd1aede5e1 100644 --- a/src/nat/nat_mini.c +++ b/src/nat/nat_mini.c @@ -164,7 +164,7 @@ GNUNET_NAT_mini_get_external_ipv4 (struct GNUNET_TIME_Relative timeout, { struct GNUNET_NAT_ExternalHandle *eh; - if (GNUNET_SYSERR == GNUNET_OS_check_helper_binary ("external-ip", FALSE, NULL)) + if (GNUNET_SYSERR == GNUNET_OS_check_helper_binary ("external-ip", GNUNET_NO, NULL)) { LOG (GNUNET_ERROR_TYPE_INFO, _("`external-ip' command not found\n")); @@ -499,7 +499,7 @@ GNUNET_NAT_mini_map_start (uint16_t port, int is_tcp, struct GNUNET_NAT_MiniHandle *ret; char pstr[6]; - if (GNUNET_SYSERR == GNUNET_OS_check_helper_binary ("upnpc", FALSE, NULL)) + if (GNUNET_SYSERR == GNUNET_OS_check_helper_binary ("upnpc", GNUNET_NO, NULL)) { LOG (GNUNET_ERROR_TYPE_INFO, _("`upnpc' command not found\n")); diff --git a/src/nat/test_nat_test.c b/src/nat/test_nat_test.c index 7d4964b5c3..41d3a2f09b 100644 --- a/src/nat/test_nat_test.c +++ b/src/nat/test_nat_test.c @@ -92,7 +92,7 @@ main (int argc, char *const argv[]) "WARNING", NULL); - nat_res = GNUNET_OS_check_helper_binary ("gnunet-nat-server", FALSE, NULL); + nat_res = GNUNET_OS_check_helper_binary ("gnunet-nat-server", GNUNET_NO, NULL); if (GNUNET_SYSERR == nat_res) { GNUNET_log (GNUNET_ERROR_TYPE_WARNING, diff --git a/src/pt/test_gns_vpn.c b/src/pt/test_gns_vpn.c index 0ae875d0f3..b1d25dd85a 100644 --- a/src/pt/test_gns_vpn.c +++ b/src/pt/test_gns_vpn.c @@ -543,11 +543,11 @@ main (int argc, char *const *argv) bin_dns = GNUNET_OS_get_libexec_binary_path ("gnunet-helper-dns"); if ( (0 != geteuid ()) && ( (GNUNET_YES != - GNUNET_OS_check_helper_binary (bin_vpn, TRUE, NULL)) || + GNUNET_OS_check_helper_binary (bin_vpn, GNUNET_YES, NULL)) || (GNUNET_YES != - GNUNET_OS_check_helper_binary (bin_exit, TRUE, NULL)) || + GNUNET_OS_check_helper_binary (bin_exit, GNUNET_YES, NULL)) || (GNUNET_YES != - GNUNET_OS_check_helper_binary (bin_dns, TRUE, NULL))) ) + GNUNET_OS_check_helper_binary (bin_dns, GNUNET_YES, NULL))) ) { fprintf (stderr, "WARNING: gnunet-helper-{exit,vpn,dns} binaries in $PATH are not SUID, refusing to run test (as it would have to fail).\n"); diff --git a/src/pt/test_gnunet_vpn.c b/src/pt/test_gnunet_vpn.c index b6e8980c9d..52899d190f 100644 --- a/src/pt/test_gnunet_vpn.c +++ b/src/pt/test_gnunet_vpn.c @@ -414,8 +414,8 @@ main (int argc, char *const *argv) exit_binary = GNUNET_OS_get_libexec_binary_path ("gnunet-helper-exit.exe");
fprintf (stderr,"%s\n", vpn_binary);
fprintf (stderr,"%s\n", exit_binary);
- if ((GNUNET_YES != (ret = GNUNET_OS_check_helper_binary (vpn_binary, TRUE, NULL))) || // FIXME: CF: add test-parameters
- (GNUNET_YES != (ret = GNUNET_OS_check_helper_binary (exit_binary, TRUE, NULL)))) // FIXME: CF: add test-parameters
+ if ((GNUNET_YES != (ret = GNUNET_OS_check_helper_binary (vpn_binary, GNUNET_YES, NULL))) || // FIXME: CF: add test-parameters
+ (GNUNET_YES != (ret = GNUNET_OS_check_helper_binary (exit_binary, GNUNET_YES, NULL)))) // FIXME: CF: add test-parameters
{
GNUNET_free (vpn_binary);
GNUNET_free (exit_binary);
diff --git a/src/transport/plugin_transport_wlan.c b/src/transport/plugin_transport_wlan.c index 29070560e8..223791e18f 100644 --- a/src/transport/plugin_transport_wlan.c +++ b/src/transport/plugin_transport_wlan.c @@ -1739,7 +1739,7 @@ libgnunet_plugin_transport_wlan_init (void *cls) } binary = GNUNET_OS_get_libexec_binary_path ("gnunet-helper-transport-wlan"); if ( (0 == testmode) && - (GNUNET_YES != GNUNET_OS_check_helper_binary (binary, TRUE, NULL)) ) + (GNUNET_YES != GNUNET_OS_check_helper_binary (binary, GNUNET_YES, NULL)) ) { LOG (GNUNET_ERROR_TYPE_ERROR, _("Helper binary `%s' not SUID, cannot run WLAN transport\n"), diff --git a/src/util/os_priority.c b/src/util/os_priority.c index e86de968aa..e0e1614f4f 100644 --- a/src/util/os_priority.c +++ b/src/util/os_priority.c @@ -634,7 +634,7 @@ start_process (int pipe_control, int fd_stdin_read; int fd_stdin_write; - if (GNUNET_SYSERR == GNUNET_OS_check_helper_binary (filename, FALSE, NULL)) + if (GNUNET_SYSERR == GNUNET_OS_check_helper_binary (filename, GNUNET_NO, NULL)) return NULL; /* not executable */ if (GNUNET_YES == pipe_control) { @@ -865,7 +865,7 @@ start_process (int pipe_control, BOOL bresult; DWORD error_code; - if (GNUNET_SYSERR == GNUNET_OS_check_helper_binary (filename, FALSE, NULL)) + if (GNUNET_SYSERR == GNUNET_OS_check_helper_binary (filename, GNUNET_NO, NULL)) return NULL; /* not executable */ /* Search in prefix dir (hopefully - the directory from which @@ -1162,7 +1162,7 @@ start_process (int pipe_control, return NULL; } - bresult = CreateProcessW (wpath, wcmd, NULL, NULL, TRUE, + bresult = CreateProcessW (wpath, wcmd, NULL, NULL, GNUNET_YES, DETACHED_PROCESS | CREATE_SUSPENDED, env_block, NULL, &start, &proc); error_code = GetLastError (); diff --git a/src/vpn/gnunet-service-vpn.c b/src/vpn/gnunet-service-vpn.c index e3bc8a49ca..a7a1ca213d 100644 --- a/src/vpn/gnunet-service-vpn.c +++ b/src/vpn/gnunet-service-vpn.c @@ -3062,7 +3062,7 @@ run (void *cls, binary = GNUNET_OS_get_libexec_binary_path ("gnunet-helper-vpn"); if (GNUNET_YES != - GNUNET_OS_check_helper_binary (binary, TRUE, NULL)) // FIXME: CF: add test-parameters + GNUNET_OS_check_helper_binary (binary, GNUNET_YES, NULL)) // FIXME: CF: add test-parameters { fprintf (stderr, "`%s' is not SUID, refusing to run.\n", |