repo: uritools action: commit revision: path_from: revision_from: af0cad5c4553bfbb1ffdcaef5fba2c639028f2ac: path_to: revision_to:
commit af0cad5c4553bfbb1ffdcaef5fba2c639028f2ac Author: epochDate: Tue Dec 15 16:27:46 2020 -0600 switched from strcmp to fnmatch in urimatch diff --git a/urimatch.c b/urimatch.c
--- a/urimatch.c +++ b/urimatch.c @@ -2,6 +2,7 @@ #include#include #include +#include #define LINE_LENGTH 1024 @@ -10,7 +11,7 @@ int match(char negate,char *part,char *arg) { if(part == 0) return 1;//we found that the part isn't here! } else { if(part) { - if(!strcmp(part,arg)) return 1; + if(!fnmatch(arg,part,FNM_NOESCAPE)) return 1; } } return 0;
-----END OF PAGE-----