/* @(#) $Id: config.c,v 1.13 2007/04/18 02:04:58 dcid Exp $ */ /* Copyright (C) 2005 Daniel B. Cid * All right reserved. * * This program is a free software; you can redistribute it * and/or modify it under the terms of the GNU General Public * License (version 2) as published by the FSF - Free Software * Foundation */ #ifdef OSSECHIDS #include "shared.h" #include "rootcheck.h" #include "config/config.h" /* Read_Rootcheck_Config: Reads the rootcheck config */ int Read_Rootcheck_Config(char * cfgfile) { int modules = 0; modules|= CROOTCHECK; if(ReadConfig(modules, cfgfile, &rootcheck, NULL) < 0) return(OS_INVALID); return(0); } /* EOF */ #endif