Disable globbing in curl command
authorDmitrij D. Czarkoff <czarkoff@gmail.com>
Sun, 6 Mar 2016 00:14:52 +0000 (01:14 +0100)
committerQuentin Rameau <quinq@fifth.space>
Sun, 6 Mar 2016 08:34:07 +0000 (09:34 +0100)
Curl is invoked for downloading particular files.  Without "-g" flag it would
apply globbing rules to URLs, which may end badly in case URL is not properly
quoted.

config.def.h

index aca8f59..9682d0d 100644 (file)
@@ -53,7 +53,7 @@ static WebKitFindOptions findopts = WEBKIT_FIND_OPTIONS_CASE_INSENSITIVE |
 /* DOWNLOAD(URI, referer) */
 #define DOWNLOAD(d, r) { \
         .v = (const char *[]){ "/bin/sh", "-c", \
-             "st -e /bin/sh -c \"curl -L -J -O --user-agent '$1'" \
+             "st -e /bin/sh -c \"curl -g -L -J -O --user-agent '$1'" \
              " --referer '$2' -b $3 -c $3 '$0';" \
              " sleep 5;\"", \
              d, useragent, r, cookiefile, NULL \