From: Jacek Caban Subject: Re: [PATCH] urlmon: Handle failure using HTTP Basic authentication scheme by asking user/password. Message-Id: <9a342b6e-4db0-039e-e616-d700e3e05aef@codeweavers.com> Date: Tue, 8 Jun 2021 20:47:00 +0200 In-Reply-To: <20210607193959.8adb4a83abf0bfc70b244302@baikal.ru> References: <20210607193959.8adb4a83abf0bfc70b244302@baikal.ru> Hi Dmitry, On 6/7/21 6:39 PM, Dmitry Timoshkov wrote: > +void handle_basic_auth_error(Protocol *prot) > +{ > + HttpProtocol *This = impl_from_Protocol(prot); > + > + handle_http_error(This, ERROR_SUCCESS); > +} Shouldn't we use IAuthenticate from bind status callback in this case? Thanks, Jacek