From: Christoph Lohmann <20h@r-36.net> Date: Fri, 12 Jul 2013 04:52:37 +0000 (+0200) Subject: Setting the cookie file on new instances. X-Git-Url: https://git.danieliu.xyz/?p=surf.git;a=commitdiff_plain;h=2e978627ddd4d18470b0d49008d9c285ed774c3d Setting the cookie file on new instances. --- diff --git a/surf.c b/surf.c index 53dda18..939a06f 100644 --- a/surf.c +++ b/surf.c @@ -843,7 +843,7 @@ newclient(void) { static void newwindow(Client *c, const Arg *arg, gboolean noembed) { guint i = 0; - const char *cmd[12], *uri; + const char *cmd[14], *uri; const Arg a = { .v = (void *)cmd }; char tmp[64]; @@ -865,6 +865,8 @@ newwindow(Client *c, const Arg *arg, gboolean noembed) { cmd[i++] = "-s"; if(showxid) cmd[i++] = "-x"; + cmd[i++] = "-c"; + cmd[i++] = cookiefile; cmd[i++] = "--"; uri = arg->v ? (char *)arg->v : c->linkhover; if(uri)