summary refs log tree commit diff
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2019-10-02 16:34:29 -0400
committerJune McEnroe <june@causal.agency>2019-10-02 16:34:29 -0400
commit9d84091b438ba1cde14cc60c9410624f0fdec947 (patch)
tree8b242a9da8b34f62df26ed2e20c8ea4040d5f16a
parentAdd The Red Threads of Fortune (diff)
downloadsrc-9d84091b438ba1cde14cc60c9410624f0fdec947.tar.gz
src-9d84091b438ba1cde14cc60c9410624f0fdec947.zip
Claim to be curl(1) in title
IMDB serves a page to our dumb User-Agent whose <title> is past the 8K
boundary but serves something normal to curl(1).
-rw-r--r--bin/title.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/title.c b/bin/title.c
index cf394dd0..0208f862 100644
--- a/bin/title.c
+++ b/bin/title.c
@@ -154,7 +154,7 @@ int main(int argc, char *argv[]) {
 	curl_easy_setopt(curl, CURLOPT_ERRORBUFFER, error);
 
 	curl_easy_setopt(curl, CURLOPT_PROTOCOLS, CURLPROTO_HTTP | CURLPROTO_HTTPS);
-	curl_easy_setopt(curl, CURLOPT_USERAGENT, "title/1.0");
+	curl_easy_setopt(curl, CURLOPT_USERAGENT, "curl/7.54.0");
 	curl_easy_setopt(curl, CURLOPT_ACCEPT_ENCODING, "");
 	curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 1L);
 	curl_easy_setopt(curl, CURLOPT_MAXREDIRS, 3L);