fix conditional in test case (exposes underlying failure)

This commit is contained in:
Florian Dold 2017-02-08 14:46:21 +01:00
parent 3592083874
commit 8178d04152
No known key found for this signature in database
GPG Key ID: D2E4F00F29D02A4B

View File

@ -252,7 +252,7 @@ main (int argc,
}
}
GNUNET_CONFIGURATION_destroy (cfg);
if (GNUNET_NO == ret)
if (GNUNET_OK != ret)
return 1;
return 0;
}