Imported Upstream version 2.7
[ossec-hids.git] / src / os_csyslogd / config.c
index c087754..91770e1 100755 (executable)
@@ -1,4 +1,5 @@
-/* @(#) $Id$ */
+/* @(#) $Id: ./src/os_csyslogd/config.c, 2011/09/08 dcid Exp $
+ */
 
 /* Copyright (C) 2009 Trend Micro Inc.
  * All rights reserved.
 #include "config/config.h"
 
 
-/** void *OS_SyslogConf(int test_config, char *cfgfile, 
+/** void *OS_SyslogConf(int test_config, char *cfgfile,
                         SyslogConfig **syslog_config)
  * Reads configuration.
  */
-void *OS_ReadSyslogConf(int test_config, char *cfgfile, 
+void *OS_ReadSyslogConf(int test_config, char *cfgfile,
                         SyslogConfig **syslog_config)
 {
     int modules = 0;
@@ -33,15 +34,15 @@ void *OS_ReadSyslogConf(int test_config, char *cfgfile,
     modules|= CSYSLOGD;
     gen_config.data = syslog_config;
 
-    
+
     /* Reading configuration */
     if(ReadConfig(modules, cfgfile, &gen_config, NULL) < 0)
     {
         ErrorExit(CONFIG_ERROR, ARGV0, cfgfile);
         return(NULL);
-    }    
+    }
+
 
-    
     syslog_config = gen_config.data;
 
     return(syslog_config);