mirror of
https://github.com/moparisthebest/wget
synced 2024-07-03 16:38:41 -04:00
Ensure that dir matches aren't mere prefix matches.
This commit is contained in:
parent
3c086872e9
commit
6c16fe9225
@ -1,3 +1,8 @@
|
||||
2008-04-23 Micah Cowan <micah@cowan.name>
|
||||
|
||||
* utils.c (test_dir_matches_p): Added a test for the case
|
||||
described in issue #20518.
|
||||
|
||||
2008-04-22 Jim Paris <jim@jtan.com>
|
||||
|
||||
* openssl.c (ssl_init): Enable combined certificate/key in
|
||||
|
@ -2205,6 +2205,8 @@ test_dir_matches_p()
|
||||
{ { "*/*COMPLETE", NULL, NULL }, "foo/!COMPLETE", true },
|
||||
{ { "/dir with spaces", NULL, NULL }, "dir with spaces", true },
|
||||
{ { "/dir*with*spaces", NULL, NULL }, "dir with spaces", true },
|
||||
{ { "/Tmp/has", NULL, NULL }, "/Tmp/has space", false },
|
||||
{ { "/Tmp/has", NULL, NULL }, "/Tmp/has,comma", false },
|
||||
};
|
||||
|
||||
for (i = 0; i < countof(test_array); ++i)
|
||||
|
Loading…
Reference in New Issue
Block a user