X-Git-Url: http://ftp.carnet.hr/carnet-debian/scm?a=blobdiff_plain;f=src%2Fos_regex%2Fos_regex.c;h=4902fe593de4f7b479fbb62fd25830cd10ecbd5f;hb=3f728675941dc69d4e544d3a880a56240a6e394a;hp=c4292710fb8b2a770b3ff40b96afe5b8c2aaf735;hpb=301048b51990573e58a30dc4a5bb4ec285cad554;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 c429271..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 */