about summary refs log tree commit diff
path: root/surf.c
diff options
context:
space:
mode:
authorChristoph Lohmann <20h@r-36.net>2012-11-20 11:53:29 +0100
committerChristoph Lohmann <20h@r-36.net>2012-11-20 11:53:29 +0100
commita7ea753f93837ee5eed1e2c80b6642d08e6143e0 (patch)
tree4de7acd23196689799f62c0e8ae0474b84db6bae /surf.c
parentUseragent strings do not count anymore. This is adding some text so every (diff)
downloadsurf-a7ea753f93837ee5eed1e2c80b6642d08e6143e0.tar.gz
surf-a7ea753f93837ee5eed1e2c80b6642d08e6143e0.tar.bz2
surf-a7ea753f93837ee5eed1e2c80b6642d08e6143e0.zip
Add a referer argument to the DOWNLOAD macro. Some sites need this. Thanks
Hiltjo Posthuma!
Diffstat (limited to 'surf.c')
-rw-r--r--surf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/surf.c b/surf.c
index ec3bee6..3e2e2b0 100644
--- a/surf.c
+++ b/surf.c
@@ -430,7 +430,7 @@ initdownload(WebKitWebView *view, WebKitDownload *o, Client *c) {
 	Arg arg;
 
 	updatewinid(c);
-	arg = (Arg)DOWNLOAD((char *)webkit_download_get_uri(o));
+	arg = (Arg)DOWNLOAD((char *)webkit_download_get_uri(o), geturi(c));
 	spawn(c, &arg);
 	return FALSE;
 }