mirror of
https://github.com/reactos/reactos.git
synced 2024-11-24 12:03:31 +08:00
[WINESYNC] wininet: Don't set default gopher protocol in InternetCrackUrlW.
Signed-off-by: Jacek Caban <jacek@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org> wine commit id 4335be346271072f440419b9234883aef187d857 by Jacek Caban <jacek@codeweavers.com>
This commit is contained in:
parent
9eddd0f193
commit
1fb556935e
@ -1836,9 +1836,6 @@ BOOL WINAPI InternetCrackUrlW(const WCHAR *lpszUrl, DWORD dwUrlLength, DWORD dwF
|
||||
case INTERNET_SCHEME_FTP:
|
||||
lpUC->nPort = INTERNET_DEFAULT_FTP_PORT;
|
||||
break;
|
||||
case INTERNET_SCHEME_GOPHER:
|
||||
lpUC->nPort = INTERNET_DEFAULT_GOPHER_PORT;
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
@ -172,6 +172,9 @@ static const crack_url_test_t crack_url_tests[] = {
|
||||
{"res://IELib.dll/test.htm",
|
||||
0, 3, INTERNET_SCHEME_RES, 6, 9, -1, 0, -1, 0, -1, 0, 15, 9, -1, 0,
|
||||
"res", "IELib.dll", "", "", "/test.htm", ""},
|
||||
{"gopher://www.winehq.org/site/about#hi",
|
||||
0, 6, INTERNET_SCHEME_GOPHER, 9, 14, -1, 0, -1, 0, -1, 0, 23, 11, 34, 3,
|
||||
"gopher", "www.winehq.org", "", "", "/site/about", "#hi"},
|
||||
};
|
||||
|
||||
static WCHAR *a2w(const char *str)
|
||||
|
@ -5,4 +5,4 @@ files:
|
||||
include/wininet.h: sdk/include/psdk/wininet.h
|
||||
include/winineti.h: sdk/include/psdk/winineti.h
|
||||
tags:
|
||||
wine: 64cb9425da43271109bc1df8df4aa32132f257ae
|
||||
wine: 4335be346271072f440419b9234883aef187d857
|
||||
|
Loading…
Reference in New Issue
Block a user