X-Git-Url: http://ftp.carnet.hr/pub/carnet-debian/scm?a=blobdiff_plain;f=src%2Fos_regex%2Fos_regex.c;h=4902fe593de4f7b479fbb62fd25830cd10ecbd5f;hb=946517cefb8751a43a89bda4220221f065f4e5d1;hp=713b2c699748278e99c427dcc06d87006be801cb;hpb=789cbc8e52da68eba3517b920ef22e000cf3c9fd;p=ossec-hids.git diff --git a/src/os_regex/os_regex.c b/src/os_regex/os_regex.c old mode 100755 new mode 100644 index 713b2c6..4902fe5 --- a/src/os_regex/os_regex.c +++ b/src/os_regex/os_regex.c @@ -1,5 +1,3 @@ -/* $OSSEC, os_regex.c, v0.4, 2006/01/02, Daniel B. Cid$ */ - /* Copyright (C) 2009 Trend Micro Inc. * All right reserved. * @@ -9,7 +7,6 @@ * Foundation */ - #include #include #include @@ -17,9 +14,7 @@ #include "os_regex.h" -/** int OS_Regex(char *pattern, char *str) v0.4 - * - * This function is a wrapper around the compile/execute +/* This function is a wrapper around the compile/execute * functions. It should only be used when the pattern is * only going to be used once. * Returns 1 on success or 0 on failure. @@ -30,18 +25,14 @@ int OS_Regex(const char *pattern, const char *str) OSRegex reg; /* If the compilation failed, we don't need to free anything */ - if(OSRegex_Compile(pattern, ®, 0)) - { - if(OSRegex_Execute(str, ®)) - { + if (OSRegex_Compile(pattern, ®, 0)) { + if (OSRegex_Execute(str, ®)) { r_code = 1; } OSRegex_FreePattern(®); } - return(r_code); + return (r_code); } - -/* EOF */