diff options
author | June McEnroe <june@causal.agency> | 2019-09-27 19:30:01 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2019-09-27 19:30:01 -0400 |
commit | 8836c4bde2366908d45b89fd7788fd0aa09288af (patch) | |
tree | 2b1370981dc612f0f43f5f36ece80ff24c81b435 /bin | |
parent | Add Trail of Lightning (diff) | |
download | src-8836c4bde2366908d45b89fd7788fd0aa09288af.tar.gz src-8836c4bde2366908d45b89fd7788fd0aa09288af.zip |
Fail on HTTP failure status in title
Diffstat (limited to 'bin')
-rw-r--r-- | bin/title.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bin/title.c b/bin/title.c index 47343d48..cf394dd0 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); |