diff options
author | Marius Strobl <marius@FreeBSD.org> | 2018-05-20 00:34:01 +0000 |
---|---|---|
committer | Marius Strobl <marius@FreeBSD.org> | 2018-05-20 00:34:01 +0000 |
commit | b61e33735f11655bd4b5cd8e3784fc1ae60d9958 (patch) | |
tree | 5f85e2dedcf001941eab51b3fdad5e950203415e /sysutils/cdrtools-devel/files/patch-libschily_fnmatch.c | |
parent | devel/git-cinnabar: update to 0.5.0.b3 (diff) |
- Update to 3.02a09
- Pet portlint
Notes
Notes:
svn path=/head/; revision=470438
Diffstat (limited to 'sysutils/cdrtools-devel/files/patch-libschily_fnmatch.c')
-rw-r--r-- | sysutils/cdrtools-devel/files/patch-libschily_fnmatch.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/sysutils/cdrtools-devel/files/patch-libschily_fnmatch.c b/sysutils/cdrtools-devel/files/patch-libschily_fnmatch.c new file mode 100644 index 000000000000..e016ebf1921b --- /dev/null +++ b/sysutils/cdrtools-devel/files/patch-libschily_fnmatch.c @@ -0,0 +1,16 @@ +--- libschily/fnmatch.c.orig 2017-08-29 23:04:40 UTC ++++ libschily/fnmatch.c +@@ -369,11 +369,11 @@ rangematch(pattern, test, flags, newp, p + /* + * Convert to the other case + */ +- if (strcmp(class, "upper") == 0) ++ if (strcmp(class, "upper") == 0) { + if (iswctype(otest, + wctype("lower"))) + ok = 1; +- else if (strcmp(class, "lower") == 0) ++ } else if (strcmp(class, "lower") == 0) + if (iswctype(otest, + wctype("upper"))) + ok = 1; |