projects
/
vimb.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6b554ce
)
Don't allow third party cookies.
author
Daniel Carl
<danielcarl@gmx.de>
Sun, 14 Apr 2013 20:55:28 +0000
(22:55 +0200)
committer
Daniel Carl
<danielcarl@gmx.de>
Sun, 14 Apr 2013 20:55:28 +0000
(22:55 +0200)
src/session.c
patch
|
blob
|
history
diff --git
a/src/session.c
b/src/session.c
index
06e1c0d
..
0952e34
100644
(file)
--- a/
src/session.c
+++ b/
src/session.c
@@
-72,7
+72,11
@@
void session_init(void)
static SoupCookieJar *cookiejar_new(const char *file, gboolean ro)
{
return g_object_new(
- COOKIEJAR_TYPE, SOUP_COOKIE_JAR_TEXT_FILENAME, file, SOUP_COOKIE_JAR_READ_ONLY, ro, NULL
+ COOKIEJAR_TYPE,
+ SOUP_COOKIE_JAR_TEXT_FILENAME, file,
+ SOUP_COOKIE_JAR_READ_ONLY, ro,
+ SOUP_COOKIE_JAR_ACCEPT_POLICY, SOUP_COOKIE_JAR_ACCEPT_NO_THIRD_PARTY,
+ NULL
);
}