diff options
author | Kamil Dudka <kdudka@redhat.com> | 2010-05-16 02:49:08 +0200 |
---|---|---|
committer | Kamil Dudka <kdudka@redhat.com> | 2010-05-16 02:52:33 +0200 |
commit | 2ffe834bffa893efcd8942736ab14e311a0087b3 (patch) | |
tree | f05892e9d30c465ebf990bd1a8e01fc517e156fa /tests/libtest | |
parent | 027ceb37a1075bb585c8f5917a26f37cdfa352d6 (diff) |
ftp wildcard: a new option CURLOPT_FNMATCH_DATA
Diffstat (limited to 'tests/libtest')
-rw-r--r-- | tests/libtest/lib577.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/libtest/lib577.c b/tests/libtest/lib577.c index ac995c3fc..fdab361e2 100644 --- a/tests/libtest/lib577.c +++ b/tests/libtest/lib577.c @@ -231,7 +231,7 @@ int test(char *URL) printf("===========================\n"); for(i = 0; i < testnum; i++) { - rc = Curl_fnmatch(tests[i].pattern, tests[i].string); + rc = Curl_fnmatch(NULL, tests[i].pattern, tests[i].string); if(rc != tests[i].result) { printf("Curl_fnmatch(\"%s\", \"%s\") should return %d (returns %d)\n", tests[i].pattern, tests[i].string, tests[i].result, rc); |