Module: wine Branch: master Commit: 0b60b8f35aae94b5ec9a595b113a0db638ed05fa URL: http://source.winehq.org/git/wine.git/?a=commit;h=0b60b8f35aae94b5ec9a595b11...
Author: Thomas Faber thfabba@gmx.de Date: Fri Jun 15 11:38:24 2012 +0200
wininet: Correctly fail INTERNET_OPTION_SECURITY_CERTIFICATE_STRUCT if libssl is not available.
---
dlls/wininet/http.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/dlls/wininet/http.c b/dlls/wininet/http.c index 0cec4fb..0a3b8fe 100644 --- a/dlls/wininet/http.c +++ b/dlls/wininet/http.c @@ -2150,6 +2150,7 @@ static DWORD HTTPREQ_QueryOption(object_header_t *hdr, DWORD option, void *buffe CertFreeCertificateContext(context); return ERROR_SUCCESS; } + return ERROR_NOT_SUPPORTED; } case INTERNET_OPTION_CONNECT_TIMEOUT: if (*size < sizeof(DWORD))