X-Git-Url: http://ftp.carnet.hr/carnet-debian/scm?p=ossec-hids.git;a=blobdiff_plain;f=src%2Fos_regex%2Fos_match.c;fp=src%2Fos_regex%2Fos_match.c;h=35ca37030017233b80417b3e43c31549a2dc708d;hp=a7a7ccf5931493c9f235a605d5e032c7e033bb44;hb=3f728675941dc69d4e544d3a880a56240a6e394a;hpb=927951d1c1ad45ba9e7325f07d996154a91c911b diff --git a/src/os_regex/os_match.c b/src/os_regex/os_match.c old mode 100755 new mode 100644 index a7a7ccf..35ca370 --- a/src/os_regex/os_match.c +++ b/src/os_regex/os_match.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,17 +7,14 @@ * Foundation */ - #include #include #include -#include "os_regex.h" +#include "os_regex.h" -/** int OS_Match2(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,17 +25,14 @@ int OS_Match2(const char *pattern, const char *str) OSMatch reg; /* If the compilation failed, we don't need to free anything */ - if(OSMatch_Compile(pattern, ®, 0)) - { - if(OSMatch_Execute(str,strlen(str), ®)) - { + if (OSMatch_Compile(pattern, ®, 0)) { + if (OSMatch_Execute(str, strlen(str), ®)) { r_code = 1; } OSMatch_FreePattern(®); } - return(r_code); + return (r_code); } -/* EOF */