Commit 6cdccb21 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

wininet: Return ERROR_CANCELLED for unsupported errors in InternetErrorDlg.

parent 0eab766b
......@@ -539,7 +539,7 @@ DWORD WINAPI InternetErrorDlg(HWND hWnd, HINTERNET hRequest,
res = ERROR_SUCCESS;
break;
default:
res = ERROR_NOT_SUPPORTED;
res = ERROR_CANCELLED;
}
if(req)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment