new upstream release (3.3.0); modify package compatibility for Stretch
[ossec-hids.git] / src / shared / tests / string_test.c
old mode 100755 (executable)
new mode 100644 (file)
index aadd3e4..f2fb709
@@ -1,5 +1,6 @@
 #include <stdio.h>
 #include <string.h>
+
 #include "string_op.h"
 
 
@@ -8,6 +9,7 @@ int main(int argc, char **argv)
     int i = 0;
     char *tmp;
     char buf[] = "/var/www/html/Testing This Interface$%^&*().txt";
+
     tmp = os_shell_escape(buf);
     char clean[] = "/var/www/html/index.html";
 
@@ -19,9 +21,6 @@ int main(int argc, char **argv)
     printf("Sent: '%s'\n", clean);
     printf("Fixed: '%s'\n", tmp);
 
-
-    return(0);
+    return (0);
 }
 
-
-/* EOF */