From: Steve Brokenshire Date: Mon, 16 May 2016 21:02:05 +0000 (+0100) Subject: Replaced integers for cURLcode with actual cURLcode values. X-Git-Tag: release-0.13~15 X-Git-Url: http://Server1/repobrowser/?p=xestiaab%2F.git;a=commitdiff_plain;h=3f0d2a29b4ee414fbf9a231f6cac7eda3fdac628 Replaced integers for cURLcode with actual cURLcode values. --- diff --git a/source/actmgr/frmActivityMgr.cpp b/source/actmgr/frmActivityMgr.cpp index 27960b7..006c668 100644 --- a/source/actmgr/frmActivityMgr.cpp +++ b/source/actmgr/frmActivityMgr.cpp @@ -330,9 +330,11 @@ void frmActivityMgr::ProcessTasksThread() int ErrorCode = ConnHandle.GetResultCode(); - if (ErrorCode != 0){ + if (ErrorCode != CURLE_OK){ - if (ErrorCode == 60 || ErrorCode == 51){ + if (ErrorCode == CURLE_SSL_CACERT || + ErrorCode == CURLE_PEER_FAILED_VERIFICATION || + ErrorCode == CURLE_SSL_CONNECT_ERROR){ // Invalid SSL certificate so bring up a dialog to the user // explaining what has happened and the options available. @@ -519,9 +521,11 @@ void frmActivityMgr::ProcessTasksThread() int ErrorCode = ConnHandle.GetResultCode(); - if (ErrorCode != 0){ + if (ErrorCode != CURLE_OK){ - if (ErrorCode == 60 || ErrorCode == 51){ + if (ErrorCode == CURLE_SSL_CACERT || + ErrorCode == CURLE_PEER_FAILED_VERIFICATION || + ErrorCode == CURLE_SSL_CONNECT_ERROR){ // Invalid SSL certificate so bring up a dialog to the user // explaining what has happened and the options available. @@ -789,9 +793,11 @@ void frmActivityMgr::ProcessTasksThread() int ErrorCode = ConnHandle.GetResultCode(); - if (ErrorCode != 0){ + if (ErrorCode != CURLE_OK){ - if (ErrorCode == 60 || ErrorCode == 51){ + if (ErrorCode == CURLE_SSL_CACERT || + ErrorCode == CURLE_PEER_FAILED_VERIFICATION || + ErrorCode == CURLE_SSL_CONNECT_ERROR){ // Invalid SSL certificate so bring up a dialog to the user // explaining what has happened and the options available.