Imported Upstream version 2.7
[ossec-hids.git] / src / shared / regex_op.c
index cf4db77..8bb0322 100755 (executable)
@@ -1,11 +1,12 @@
-/* @(#) $Id: regex_op.c,v 1.12 2009/06/24 18:53:08 dcid Exp $ */
+/* @(#) $Id: ./src/shared/regex_op.c, 2011/09/08 dcid Exp $
+ */
 
 /* Copyright (C) 2009 Trend Micro Inc.
  * All rights reserved.
  *
  * This program is a free software; you can redistribute it
  * and/or modify it under the terms of the GNU General Public
- * License (version 3) as published by the FSF - Free Software
+ * License (version 2) as published by the FSF - Free Software
  * Foundation
  */
 
 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