From 54d041ca969cb1abbdcbf0926208d6d419ef6f5f Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Fri, 27 Sep 2019 19:30:01 -0400 Subject: Fail on HTTP failure status in title --- bin/title.c | 1 + 1 file changed, 1 insertion(+) (limited to 'bin/title.c') diff --git a/bin/title.c b/bin/title.c index 199c18d8..a773cc7c 100644 --- a/bin/title.c +++ b/bin/title.c @@ -158,6 +158,7 @@ int main(int argc, char *argv[]) { curl_easy_setopt(curl, CURLOPT_ACCEPT_ENCODING, ""); curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 1L); curl_easy_setopt(curl, CURLOPT_MAXREDIRS, 3L); + curl_easy_setopt(curl, CURLOPT_FAILONERROR, 1L); curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, handleBody); -- cgit 1.4.1