summaryrefslogtreecommitdiff
path: root/src/testing/testing_api_cmd_exec_keyup.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2020-07-17 22:18:57 +0200
committerChristian Grothoff <christian@grothoff.org>2020-07-17 22:37:04 +0200
commit62963ae4b36e88e8655d461646d85c211a3398d5 (patch)
tree15c0e7debd92d95942dcc7fb2b602532ebb2c684 /src/testing/testing_api_cmd_exec_keyup.c
parentc7e00e6317502f110956918c1af9622004bad08f (diff)
downloadexchange-62963ae4b36e88e8655d461646d85c211a3398d5.tar.gz
exchange-62963ae4b36e88e8655d461646d85c211a3398d5.tar.bz2
exchange-62963ae4b36e88e8655d461646d85c211a3398d5.zip
adapt to change in GNUNET_OS_start_process() API (#6188)
Diffstat (limited to 'src/testing/testing_api_cmd_exec_keyup.c')
-rw-r--r--src/testing/testing_api_cmd_exec_keyup.c40
1 files changed, 20 insertions, 20 deletions
diff --git a/src/testing/testing_api_cmd_exec_keyup.c b/src/testing/testing_api_cmd_exec_keyup.c
index 4283c7eae..7a0b36d17 100644
--- a/src/testing/testing_api_cmd_exec_keyup.c
+++ b/src/testing/testing_api_cmd_exec_keyup.c
@@ -76,28 +76,28 @@ keyup_run (void *cls,
if (GNUNET_YES == ks->with_now)
{
- ks->keyup_proc = GNUNET_OS_start_process
- (GNUNET_NO,
- GNUNET_OS_INHERIT_STD_ALL,
- NULL, NULL, NULL,
- "taler-exchange-keyup",
- "taler-exchange-keyup",
- "-c", ks->config_filename,
- "-o", "auditor.in",
- "--time",
- GNUNET_STRINGS_absolute_time_to_string (ks->now),
- NULL);
+ ks->keyup_proc
+ = GNUNET_OS_start_process
+ (GNUNET_OS_INHERIT_STD_ALL,
+ NULL, NULL, NULL,
+ "taler-exchange-keyup",
+ "taler-exchange-keyup",
+ "-c", ks->config_filename,
+ "-o", "auditor.in",
+ "--time",
+ GNUNET_STRINGS_absolute_time_to_string (ks->now),
+ NULL);
}
else
- ks->keyup_proc = GNUNET_OS_start_process
- (GNUNET_NO,
- GNUNET_OS_INHERIT_STD_ALL,
- NULL, NULL, NULL,
- "taler-exchange-keyup",
- "taler-exchange-keyup",
- "-c", ks->config_filename,
- "-o", "auditor.in",
- NULL);
+ ks->keyup_proc
+ = GNUNET_OS_start_process
+ (GNUNET_OS_INHERIT_STD_ALL,
+ NULL, NULL, NULL,
+ "taler-exchange-keyup",
+ "taler-exchange-keyup",
+ "-c", ks->config_filename,
+ "-o", "auditor.in",
+ NULL);
if (NULL == ks->keyup_proc)
{