wildmatch: replace variable 'special' with better named ones
[gitweb.git] / test-wildmatch.c
index 74c08644eebbea411dce0603d7c87f144d0e1446..e384c8edb104c46c6cfe29677eccc8199fafe080 100644 (file)
@@ -3,6 +3,14 @@
 
 int main(int argc, char **argv)
 {
+       int i;
+       for (i = 2; i < argc; i++) {
+               if (argv[i][0] == '/')
+                       die("Forward slash is not allowed at the beginning of the\n"
+                           "pattern because Windows does not like it. Use `XXX/' instead.");
+               else if (!strncmp(argv[i], "XXX/", 4))
+                       argv[i] += 3;
+       }
        if (!strcmp(argv[1], "wildmatch"))
                return !!wildmatch(argv[3], argv[2], 0);
        else if (!strcmp(argv[1], "iwildmatch"))