mshtml: Fixed copy&paste typo in GetAsciiHostPort implementation.

Signed-off-by: Jacek Caban <jacek@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Jacek Caban 2016-03-17 13:23:57 +01:00 committed by Alexandre Julliard
parent 13079c5696
commit 0eba20def8
1 changed files with 1 additions and 1 deletions

View File

@ -2821,7 +2821,7 @@ static nsresult NSAPI nsURI_GetAsciiHostPort(nsIFileURL *iface, nsACString *aAsc
WARN("(%p)->(%p) FIXME: Use Uri_PUNYCODE_IDN_HOST flag\n", This, aAsciiHostPort);
return nsIFileURL_GetAsciiHostPort(&This->nsIFileURL_iface, aAsciiHostPort);
return nsIFileURL_GetHostPort(&This->nsIFileURL_iface, aAsciiHostPort);
}
static nsresult NSAPI nsURI_GetAsciiHost(nsIFileURL *iface, nsACString *aAsciiHost)