new upstream release (3.3.0); modify package compatibility for Stretch
[ossec-hids.git] / src / rootcheck / config.c
old mode 100755 (executable)
new mode 100644 (file)
index b04d492..91c41d6
@@ -1,5 +1,3 @@
-/* @(#) $Id$ */
-
 /* Copyright (C) 2009 Trend Micro Inc.
  * All right reserved.
  *
 #include "config/config.h"
 
 
-
-/* Read_Rootcheck_Config: Reads the rootcheck config
- */
-int Read_Rootcheck_Config(char * cfgfile)
+/* Read the rootcheck config */
+int Read_Rootcheck_Config(const char *cfgfile)
 {
     int modules = 0;
 
-    modules|= CROOTCHECK;
-
-    if(ReadConfig(modules, cfgfile, &rootcheck, NULL) < 0)
-        return(OS_INVALID);
+    modules |= CROOTCHECK;
+    if (ReadConfig(modules, cfgfile, &rootcheck, NULL) < 0) {
+        return (OS_INVALID);
+    }
 
-
-    #ifdef CLIENT
-    /* Reading shared config */
-    modules|= CAGENT_CONFIG;
+#ifdef CLIENT
+    /* Read shared config */
+    modules |= CAGENT_CONFIG;
     ReadConfig(modules, AGENTCONFIG, &rootcheck, NULL);
-    #endif
-                  
-    return(0);
+#endif
+
+    return (0);
 }
+#endif /* OSSECHIDS */
 
-/* EOF */
-#endif