mshtml: Fix typo determining if channel is HTTP.

This commit is contained in:
Andrew Eikum 2010-03-19 15:57:26 -05:00 committed by Alexandre Julliard
parent 8255df5698
commit 341ba18d75
1 changed files with 1 additions and 1 deletions

View File

@ -307,7 +307,7 @@ static void set_uri_window(nsWineURI *This, HTMLWindow *window)
static inline BOOL is_http_channel(nsChannel *This)
{
return This->url_scheme == URL_SCHEME_HTTP || This->url_scheme == URL_SCHEME_HTTP;
return This->url_scheme == URL_SCHEME_HTTP || This->url_scheme == URL_SCHEME_HTTPS;
}
#define NSCHANNEL_THIS(iface) DEFINE_THIS(nsChannel, HttpChannel, iface)