From: Victor Julien Date: Wed, 4 Dec 2013 10:47:54 +0000 (+0100) Subject: Fix Conf api usage after rebase X-Git-Tag: suricata-2.0beta2~78 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0a24ac085577fc2dd1c7f1161614a705603368e4;p=thirdparty%2Fsuricata.git Fix Conf api usage after rebase --- diff --git a/src/suricata.c b/src/suricata.c index 32c7157cd9..db11b9902c 100644 --- a/src/suricata.c +++ b/src/suricata.c @@ -1852,10 +1852,10 @@ static int PostConfLoadedSetup(SCInstance *suri) switch (suri->checksum_validation) { case 0: - ConfSet("stream.checksum-validation", "0", 0); + ConfSet("stream.checksum-validation", "0"); break; case 1: - ConfSet("stream.checksum-validation", "1", 1); + ConfSet("stream.checksum-validation", "1"); break; }