diff options
author | June McEnroe <june@causal.agency> | 2019-09-20 23:44:58 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2019-09-20 23:44:58 -0400 |
commit | 3231fe21d3b389448c9a5ca7b4c91fdd25c9e677 (patch) | |
tree | 3c84b982c399cb76bcc2e29a477e33afbbff88c8 /bin | |
parent | Use sensitivity aliases in TF2 (diff) | |
download | src-3231fe21d3b389448c9a5ca7b4c91fdd25c9e677.tar.gz src-3231fe21d3b389448c9a5ca7b4c91fdd25c9e677.zip |
Enable cookies in title
Perhaps this will make it less suspicious to Google. Who knows.
Diffstat (limited to '')
-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 199c18d8..85a3d6ee 100644 --- a/bin/title.c +++ b/bin/title.c @@ -155,6 +155,7 @@ int main(int argc, char *argv[]) { curl_easy_setopt(curl, CURLOPT_PROTOCOLS, CURLPROTO_HTTP | CURLPROTO_HTTPS); curl_easy_setopt(curl, CURLOPT_USERAGENT, "title/1.0"); + curl_easy_setopt(curl, CURLOPT_COOKIEFILE, ""); curl_easy_setopt(curl, CURLOPT_ACCEPT_ENCODING, ""); curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 1L); curl_easy_setopt(curl, CURLOPT_MAXREDIRS, 3L); |