diff options
author | Martin Willi <martin@revosec.ch> | 2011-06-15 12:22:41 +0200 |
---|---|---|
committer | Martin Willi <martin@revosec.ch> | 2011-06-15 12:22:41 +0200 |
commit | 38dc106cde55db398e38630be623114c8667bbbe (patch) | |
tree | 4dcb49251e49bd5bc6125c40bfeb9ec175b74768 | |
parent | 7804b7f4208667916fbb7d320afd1aa989f3455b (diff) | |
download | strongswan-38dc106cde55db398e38630be623114c8667bbbe.tar.bz2 strongswan-38dc106cde55db398e38630be623114c8667bbbe.tar.xz |
Set cookies for the complete domain
-rw-r--r-- | src/libfast/request.c | 2 |
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, |