diff options
author | Rodrigo Arias Mallo <rodarima@gmail.com> | 2024-04-12 18:08:33 +0200 |
---|---|---|
committer | Rodrigo Arias Mallo <rodarima@gmail.com> | 2024-04-12 18:20:28 +0200 |
commit | 3f8cf3b42136d9c077987ca6f887b44179f94f18 (patch) | |
tree | afb1da9f0cb916adbc69377291d39472fefeb916 /dpi/downloads.cc | |
parent | 2155151bb569b866fb091aa39416744d131e445b (diff) |
Use uppercase "Dillo" for wget user agent
Reported-by: dogma
Diffstat (limited to 'dpi/downloads.cc')
-rw-r--r-- | dpi/downloads.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dpi/downloads.cc b/dpi/downloads.cc index 4c3aae3e..303bf231 100644 --- a/dpi/downloads.cc +++ b/dpi/downloads.cc @@ -322,7 +322,7 @@ DLItem::DLItem(const char *full_filename, const char *url) Filter_smtp_hack(esc_url); dl_argv = new char*[10]; int i = 0; - const char *user_agent = "dillo/" VERSION; + const char *user_agent = "Dillo/" VERSION; dl_argv[i++] = (char*)"wget"; if (stat(fullname, &ss) == 0) init_bytesize = (int)ss.st_size; |