From 2797e67a798aef94ee6c16be593f9f9c20e18a51 Mon Sep 17 00:00:00 2001 From: Victor Julien Date: Mon, 19 Apr 2010 16:29:10 +0200 Subject: [PATCH] Print Suricata version after initializing logging subsys. --- src/suricata.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/suricata.c b/src/suricata.c index bdc483a858..d087522355 100644 --- a/src/suricata.c +++ b/src/suricata.c @@ -413,11 +413,11 @@ int main(int argc, char **argv) } #endif - SCLogInfo("This is %s version %s", PROG_NAME, PROG_VER); - /* initialize the logging subsys */ SCLogInitLogModule(NULL); + SCLogInfo("This is %s version %s", PROG_NAME, PROG_VER); + /* Initialize the configuration module. */ ConfInit();