X-Git-Url: http://ftp.carnet.hr/carnet-debian/scm?p=ossec-hids.git;a=blobdiff_plain;f=src%2Frootcheck%2Fconfig.c;h=91c41d6678e3b333449bb85a57d997266c0b6f11;hp=9cf9e6c53b649857d266c1c1c4eebb9c4d8c9f04;hb=3f728675941dc69d4e544d3a880a56240a6e394a;hpb=927951d1c1ad45ba9e7325f07d996154a91c911b diff --git a/src/rootcheck/config.c b/src/rootcheck/config.c old mode 100755 new mode 100644 index 9cf9e6c..91c41d6 --- a/src/rootcheck/config.c +++ b/src/rootcheck/config.c @@ -1,6 +1,3 @@ -/* @(#) $Id: ./src/rootcheck/config.c, 2011/09/08 dcid Exp $ - */ - /* Copyright (C) 2009 Trend Micro Inc. * All right reserved. * @@ -16,27 +13,23 @@ #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; + modules |= CROOTCHECK; + if (ReadConfig(modules, cfgfile, &rootcheck, NULL) < 0) { + return (OS_INVALID); + } - 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 +#endif - return(0); + return (0); } +#endif /* OSSECHIDS */ -/* EOF */ -#endif