diff options
Diffstat (limited to 'src/ats-tests')
-rw-r--r-- | src/ats-tests/ats-testing-experiment.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/ats-tests/ats-testing-experiment.c b/src/ats-tests/ats-testing-experiment.c index 110a48043..9b11caec3 100644 --- a/src/ats-tests/ats-testing-experiment.c +++ b/src/ats-tests/ats-testing-experiment.c @@ -196,7 +196,8 @@ load_episode (struct Experiment *e, GNUNET_asprintf(&op_name, "op-%u-type", op_counter); if ( (GNUNET_SYSERR != GNUNET_CONFIGURATION_get_value_string(cfg, sec_name, op_name, &type)) && - ((STOP_SEND != o->type) || (STOP_PREFERENCE != o->type))) + (STOP_SEND != o->type) && + (STOP_PREFERENCE != o->type) ) { /* Load arguments for set_rate, start_send, set_preference */ if (0 == strcmp (type, "constant")) |