From 872ba8af29aeac72c0dbde2d26f70296b58639ef Mon Sep 17 00:00:00 2001 From: Piotr Caban Date: Sun, 7 Nov 2010 18:46:54 +0100 Subject: [PATCH] mshtml: Impoved implementation of nsURI_GetAsciiHost. --- dlls/mshtml/nsio.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/mshtml/nsio.c b/dlls/mshtml/nsio.c index 18526a52968..578f1b51b28 100644 --- a/dlls/mshtml/nsio.c +++ b/dlls/mshtml/nsio.c @@ -2101,8 +2101,8 @@ static nsresult NSAPI nsURI_GetAsciiHost(nsIURL *iface, nsACString *aAsciiHost) if(This->nsuri) return nsIURI_GetAsciiHost(This->nsuri, aAsciiHost); - FIXME("default action not implemented\n"); - return NS_ERROR_NOT_IMPLEMENTED; + FIXME("Use Uri_PUNYCODE_IDN_HOST flag\n"); + return get_uri_string(This, Uri_PROPERTY_HOST, aAsciiHost); } static nsresult NSAPI nsURI_GetOriginCharset(nsIURL *iface, nsACString *aOriginCharset)