From 88c696a720dab14601933147ff44ff802dd4ef1d Mon Sep 17 00:00:00 2001
From: Alex <a1ex@dismail.de>
Date: Mon, 13 Apr 2026 08:57:26 +0000
Subject: [PATCH] Remove deprecated DNT header

The 'Do Not Track' header has been abandoned by W3C and most major
browsers. Very few advertising companies actually supported DNT.
---
 src/IO/http.c | 2 --
 1 file changed, 2 deletions(-)

diff --git a/src/IO/http.c b/src/IO/http.c
index 6c11c9f7..3f99e94a 100644
--- a/src/IO/http.c
+++ b/src/IO/http.c
@@ -431,7 +431,6 @@ static Dstr *Http_make_query_str(DilloWeb *web, bool_t use_proxy, bool_t use_tls
 #endif
          "\r\n"
          "%s" /* auth */
-         "DNT: 1\r\n"
          "%s" /* proxy auth */
          "%s" /* referer */
          "Connection: %s\r\n"
@@ -459,7 +458,6 @@ static Dstr *Http_make_query_str(DilloWeb *web, bool_t use_proxy, bool_t use_tls
 #endif
          "\r\n"
          "%s" /* auth */
-         "DNT: 1\r\n"
          "%s" /* proxy auth */
          "%s" /* referer */
          "Connection: %s\r\n"
-- 
2.51.0

