|
From: CVS C. to T. <the...@li...> - 2011-01-14 18:47:46
|
Revision: 603
http://themis.svn.sourceforge.net/themis/?rev=603&view=rev
Author: z3r0_one
Date: 2011-01-14 18:47:40 +0000 (Fri, 14 Jan 2011)
Log Message:
-----------
Defaulting cookie discarding to false. I should have made this change when I added the session member to the cookie_st structure.
Modified Paths:
--------------
trunk/themis/modules/http/cookieman.h
Modified: trunk/themis/modules/http/cookieman.h
===================================================================
--- trunk/themis/modules/http/cookieman.h 2011-01-09 19:32:38 UTC (rev 602)
+++ trunk/themis/modules/http/cookieman.h 2011-01-14 18:47:40 UTC (rev 603)
@@ -101,7 +101,7 @@
//! Location of the cookie on disk (if applicable)
entry_ref ref;
cookie_st() {
- discard=true;//discard cookie on shutdown if not set to false later
+ discard=false;//discard cookie on shutdown if not set to false later
session = true; //same as discard, mostly, except there is a specific cookie flag for discard, but not for session
secure=false;
httponly = false;//not particularly useful right now. RR 1/9/2011
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|