From 6d9ec4d1df6348a766dbee8292eecf979a0551f1 Mon Sep 17 00:00:00 2001 From: IvanovDA Date: Sun, 26 May 2024 20:54:23 +0300 Subject: [PATCH] =?UTF-8?q?code:=20=D0=BE=D0=B1=D0=BD=D0=BE=D0=B2=D0=BB?= =?UTF-8?q?=D0=B5=D0=BD=D0=B8=D0=B5=20=D0=BF=D1=80=D0=BE=D0=B2=D0=B5=D1=80?= =?UTF-8?q?=D0=BA=D0=B8=20=D0=BD=D0=B0=20=D0=BE=D1=88=D0=B8=D0=B1=D0=BA?= =?UTF-8?q?=D0=B8=20=D0=B2=20curl?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- cs-project3.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/cs-project3.cpp b/cs-project3.cpp index 5a9c55e..027e8ff 100644 --- a/cs-project3.cpp +++ b/cs-project3.cpp @@ -40,6 +40,10 @@ int main(int argc, char* argv[]) { curl_easy_setopt(curl, CURLOPT_URL, argv[1]); res = curl_easy_perform(curl); curl_easy_cleanup(curl); + if (res != CURLE_OK) { + cout << curl_easy_strerror(res); + exit(1); + } } curl_easy_cleanup(curl); return 0;