X-Git-Url: http://ftp.carnet.hr/carnet-debian/scm?a=blobdiff_plain;f=src%2Frootcheck%2Fcheck_rc_policy.c;h=8d7cf655d961c5fe0c253ae1f158bf0c41922b2d;hb=6ef2f786c6c8ead94841b5f93baf9f43421f08c8;hp=c7b96e57df373d924f44a8ea107e2211fe7d904d;hpb=914feba5d54f979cd5d7e69c349c3d01f630042a;p=ossec-hids.git diff --git a/src/rootcheck/check_rc_policy.c b/src/rootcheck/check_rc_policy.c index c7b96e5..8d7cf65 100755 --- a/src/rootcheck/check_rc_policy.c +++ b/src/rootcheck/check_rc_policy.c @@ -1,20 +1,21 @@ -/* @(#) $Id: check_rc_policy.c,v 1.3 2009/06/24 18:53:07 dcid Exp $ */ +/* @(#) $Id: ./src/rootcheck/check_rc_policy.c, 2011/09/08 dcid Exp $ + */ /* Copyright (C) 2009 Trend Micro Inc. * 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 3) as published by the FSF - Free Software + * License (version 2) as published by the FSF - Free Software * Foundation */ - + #include "shared.h" #include "rootcheck.h" - + /* check_rc_unixaudit: * Read the file pointer specified * and check if the configured file is there @@ -22,9 +23,9 @@ void check_rc_unixaudit(FILE *fp, void *p_list) { debug1("%s: DEBUG: Starting on check_rc_unixaudit", ARGV0); - + rkcl_get_entry(fp, "System Audit:", p_list); - + } @@ -36,9 +37,9 @@ void check_rc_unixaudit(FILE *fp, void *p_list) void check_rc_winaudit(FILE *fp, void *p_list) { debug1("%s: DEBUG: Starting on check_rc_winaudit", ARGV0); - + rkcl_get_entry(fp, "Windows Audit:", p_list); - + } /* check_rc_winmalware: @@ -48,9 +49,9 @@ void check_rc_winaudit(FILE *fp, void *p_list) void check_rc_winmalware(FILE *fp, void *p_list) { debug1("%s: DEBUG: Starting on check_rc_winmalware", ARGV0); - + rkcl_get_entry(fp, "Windows Malware:", p_list); - + } /* check_rc_winapps: @@ -60,7 +61,7 @@ void check_rc_winmalware(FILE *fp, void *p_list) void check_rc_winapps(FILE *fp, void *p_list) { debug1("%s: DEBUG: Starting on check_rc_winapps", ARGV0); - + rkcl_get_entry(fp, "Application Found:", p_list); }