X-Git-Url: http://ftp.carnet.hr/carnet-debian/scm?p=ossec-hids.git;a=blobdiff_plain;f=src%2Fshared%2Fregex_op.c;fp=src%2Fshared%2Fregex_op.c;h=8bb0322d9d67190b5916dfc122fec7a05b94c467;hp=7478c317d29248832e39559c6ccbd53b64974bb2;hb=6ef2f786c6c8ead94841b5f93baf9f43421f08c8;hpb=301048b51990573e58a30dc4a5bb4ec285cad554 diff --git a/src/shared/regex_op.c b/src/shared/regex_op.c index 7478c31..8bb0322 100755 --- a/src/shared/regex_op.c +++ b/src/shared/regex_op.c @@ -1,4 +1,5 @@ -/* @(#) $Id$ */ +/* @(#) $Id: ./src/shared/regex_op.c, 2011/09/08 dcid Exp $ + */ /* Copyright (C) 2009 Trend Micro Inc. * All rights reserved. @@ -23,11 +24,11 @@ int OS_PRegex(char *str, char *regex) { regex_t preg; - + if(!str || !regex) return(0); - - + + if(regcomp(&preg, regex, REG_EXTENDED|REG_NOSUB) != 0) { merror("%s: Posix Regex compile error (%s).", __local_name, regex); @@ -43,7 +44,7 @@ int OS_PRegex(char *str, char *regex) regfree(&preg); return(1); - + } #endif