Ensure curl follows redirects for downloads - surf - [fork] surf browser, a WebKit based browser
HTML git clone git@git.drkhsh.at/surf.git
DIR Log
DIR Files
DIR Refs
DIR README
DIR LICENSE
---
DIR commit a383964c9582614fd56a45113cfa3685e92700fa
DIR parent e0e4a844f76311f4bfed542d34459dcfc68f9ddf
HTML Author: Nick White <git@njw.me.uk>
Date: Sat, 30 Mar 2013 10:32:45 +0000
Ensure curl follows redirects for downloads
Signed-off-by: Christoph Lohmann <20h@r-36.net>
Diffstat:
M config.def.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
DIR diff --git a/config.def.h b/config.def.h
@@ -32,7 +32,7 @@ static Bool hidebackground = FALSE;
/* DOWNLOAD(URI, referer) */
#define DOWNLOAD(d, r) { \
.v = (char *[]){ "/bin/sh", "-c", \
- "st -e /bin/sh -c \"curl -J -O --user-agent '$1'" \
+ "st -e /bin/sh -c \"curl -L -J -O --user-agent '$1'" \
" --referer '$2' -b $3 -c $3 '$0';" \
" sleep 5;\"", \
d, useragent, r, cookiefile, NULL \