Fixing cookie handling for https/http by using curl.
authorChristoph Lohmann <20h@r-36.net>
Sat, 2 Feb 2013 14:42:09 +0000 (15:42 +0100)
committerChristoph Lohmann <20h@r-36.net>
Sat, 2 Feb 2013 14:42:09 +0000 (15:42 +0100)
config.def.h

index 1cba4d7..a221c86 100644 (file)
@@ -35,10 +35,11 @@ static Bool hidebackground  = FALSE;
 /* DOWNLOAD(URI, referer) */
 #define DOWNLOAD(d, r) { \
        .v = (char *[]){ "/bin/sh", "-c", \
-               "st -e /bin/sh -c \"wget '$0'" \
-               " --load-cookies ~/.surf/cookies.txt" \
-               " --user-agent '$1'" \
-               " --referer '$2' ; sleep 5\"", d, useragent, r, NULL \
+               "st -e /bin/sh -c \"curl -J -O --user-agent '$1'" \
+               " --referer '$2'" \
+               " -b ~/.surf/cookies.txt -c ~/.surf/cookies.txt '$0';" \
+               " sleep 5;\"", \
+               d, useragent, r, NULL \
        } \
 }