X-Git-Url: http://ftp.carnet.hr/carnet-debian/scm?a=blobdiff_plain;ds=sidebyside;f=src%2Fos_regex%2Fos_regex.c;h=4902fe593de4f7b479fbb62fd25830cd10ecbd5f;hb=3f728675941dc69d4e544d3a880a56240a6e394a;hp=8e871ada2f960c4920c82db100bcc29f694effe7;hpb=6ef2f786c6c8ead94841b5f93baf9f43421f08c8;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 8e871ad..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,31 +14,25 @@ #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. */ -int OS_Regex(char *pattern, char *str) +int OS_Regex(const char *pattern, const char *str) { int r_code = 0; 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 */