this fails unexpectedly:
res = apr_fnmatch("a?z", "a/z", 0);
ABTS_INT_EQUAL(tc, 0, res);
this related testcase works:
res = apr_fnmatch("a?z", "a/z", APR_FNM_PATHNAME);
ABTS_INT_EQUAL(tc, APR_FNM_NOMATCH, res);
this fails unexpectedly:
res = apr_fnmatch("a?z", "a/z", 0);
ABTS_INT_EQUAL(tc, 0, res);
this related testcase works:
res = apr_fnmatch("a?z", "a/z", APR_FNM_PATHNAME);
ABTS_INT_EQUAL(tc, APR_FNM_NOMATCH, res);