Module: wine Branch: master Commit: 0f21814bbe293bd9efc84e9722b8161a582eab63 URL: http://source.winehq.org/git/wine.git/?a=commit;h=0f21814bbe293bd9efc84e9722...
Author: Michael Stefaniuc mstefani@redhat.de Date: Wed Nov 10 01:20:38 2010 +0100
urlmon/tests: Escape '' in C strings (sparse).
---
dlls/urlmon/tests/uri.c | 12 ++++++------ 1 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/dlls/urlmon/tests/uri.c b/dlls/urlmon/tests/uri.c index b11a3a0..8c4fd38 100644 --- a/dlls/urlmon/tests/uri.c +++ b/dlls/urlmon/tests/uri.c @@ -3307,20 +3307,20 @@ static const uri_properties uri_tests[] = { } }, /* Allow more characters when Uri_CREATE_FILE_USE_DOS_PATH is specified */ - { "file:///c:/dir%%61%20%5Fname/file%2A.html", Uri_CREATE_FILE_USE_DOS_PATH, S_OK, FALSE, + { "file:///c:/dir\%%61%20%5Fname/file%2A.html", Uri_CREATE_FILE_USE_DOS_PATH, S_OK, FALSE, { - {"file://c:\dir%a _name\file*.html",S_OK,FALSE}, + {"file://c:\dir\%a _name\file*.html",S_OK,FALSE}, {"",S_FALSE,FALSE}, - {"file://c:\dir%a _name\file*.html",S_OK,FALSE}, + {"file://c:\dir\%a _name\file*.html",S_OK,FALSE}, {"",S_FALSE,FALSE}, {".html",S_OK,FALSE}, {"",S_FALSE,FALSE}, {"",S_FALSE,FALSE}, {"",S_FALSE,FALSE}, - {"c:\dir%a _name\file*.html",S_OK,FALSE}, - {"c:\dir%a _name\file*.html",S_OK,FALSE}, + {"c:\dir\%a _name\file*.html",S_OK,FALSE}, + {"c:\dir\%a _name\file*.html",S_OK,FALSE}, {"",S_FALSE,FALSE}, - {"file:///c:/dir%%61%20%5Fname/file%2A.html",S_OK,FALSE}, + {"file:///c:/dir\%%61%20%5Fname/file%2A.html",S_OK,FALSE}, {"file",S_OK,FALSE}, {"",S_FALSE,FALSE}, {"",S_FALSE,FALSE}