X-Git-Url: http://ftp.carnet.hr/carnet-debian/scm?a=blobdiff_plain;f=src%2Fos_regex%2Fos_match.c;h=a7a7ccf5931493c9f235a605d5e032c7e033bb44;hb=927951d1c1ad45ba9e7325f07d996154a91c911b;hp=cd4013653143b8e1d95cf12f34d2131238398b06;hpb=301048b51990573e58a30dc4a5bb4ec285cad554;p=ossec-hids.git diff --git a/src/os_regex/os_match.c b/src/os_regex/os_match.c index cd40136..a7a7ccf 100755 --- a/src/os_regex/os_match.c +++ b/src/os_regex/os_match.c @@ -13,10 +13,10 @@ #include #include #include - #include "os_regex.h" + /** int OS_Match2(char *pattern, char *str) v0.4 * * This function is a wrapper around the compile/execute @@ -24,7 +24,7 @@ * only going to be used once. * Returns 1 on success or 0 on failure. */ -int OS_Match2(char *pattern, char *str) +int OS_Match2(const char *pattern, const char *str) { int r_code = 0; OSMatch reg; @@ -39,9 +39,8 @@ int OS_Match2(char *pattern, char *str) OSMatch_FreePattern(®); } - + return(r_code); } - /* EOF */