use single line

This commit is contained in:
Christian Grothoff 2019-09-15 13:13:29 +02:00
parent 0647bec86c
commit ff0a206f9d
No known key found for this signature in database
GPG Key ID: 939E6BE1E29FC3CC
2 changed files with 3 additions and 6 deletions

View File

@ -204,8 +204,7 @@ TALER_TESTING_run_bank (const char *config_filename,
}
GNUNET_asprintf (&wget_cmd,
"wget -q -t 1 -T 1 %s"
" -o /dev/null -O /dev/null",
"wget -q -t 1 -T 1 %s -o /dev/null -O /dev/null",
bank_url);
/* give child time to start and bind against the socket */

View File

@ -600,8 +600,7 @@ TALER_TESTING_wait_exchange_ready (const char *base_url)
unsigned int iter;
GNUNET_asprintf (&wget_cmd,
"wget -q -t 1 -T 1 %skeys"
" -o /dev/null -O /dev/null",
"wget -q -t 1 -T 1 %skeys -o /dev/null -O /dev/null",
base_url); // make sure ends with '/'
/* give child time to start and bind against the socket */
fprintf (stderr,
@ -642,8 +641,7 @@ TALER_TESTING_wait_auditor_ready (const char *base_url)
unsigned int iter;
GNUNET_asprintf (&wget_cmd,
"wget -q -t 1 -T 1 %sversion"
" -o /dev/null -O /dev/null",
"wget -q -t 1 -T 1 %sversion -o /dev/null -O /dev/null",
base_url); // make sure ends with '/'
/* give child time to start and bind against the socket */
fprintf (stderr,