aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Willi <martin@revosec.ch>2011-06-15 12:22:41 +0200
committerMartin Willi <martin@revosec.ch>2011-06-15 12:22:41 +0200
commit38dc106cde55db398e38630be623114c8667bbbe (patch)
tree4dcb49251e49bd5bc6125c40bfeb9ec175b74768
parent7804b7f4208667916fbb7d320afd1aa989f3455b (diff)
downloadstrongswan-38dc106cde55db398e38630be623114c8667bbbe.tar.bz2
strongswan-38dc106cde55db398e38630be623114c8667bbbe.tar.xz
Set cookies for the complete domain
-rw-r--r--src/libfast/request.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libfast/request.c b/src/libfast/request.c
index 2ab873377..3acd831b2 100644
--- a/src/libfast/request.c
+++ b/src/libfast/request.c
@@ -215,7 +215,7 @@ METHOD(request_t, add_cookie, void,
private_request_t *this, char *name, char *value)
{
thread_this->set(thread_this, this);
- cgi_cookie_set (this->cgi, name, value, get_base(this), NULL, NULL, 0, 0);
+ cgi_cookie_set(this->cgi, name, value, NULL, NULL, NULL, 0, 0);
}
METHOD(request_t, redirect, void,