|
From: Raymond C. R. <ra...@ba...> - 2011-01-14 19:57:12
|
On 1/13/2011 3:28 PM, Mark Hellegers wrote: >> On 1/12/2011 3:42 PM, Mark Hellegers wrote: >>> Ah, got it. >>> I compile with a separate makefile that I don't want to commit and I >>> forgot to copy your change over to my makefile. >>> It is now compiling. I will give it a spin. >>> >>> Mark >> Cool, how's it working out for you so far? >> Raymond > Hmm, no more crash on themis.sf.net, but I don't see any cookies getting > stored either. > Is there a part of the debugging output I can check to see if a site has a > cookie? > > Mark > I found the problem. Just before I committed the code, I added a new variable to the cookie_st structure to designate a cookie as a session cookie instead of relying on the discard variable which is really meant for the discard flag in the set-cookie header (which isn't used very much if at all). I forgot to then default the discard variable to false from the true that it had been set to. So, basically, all cookies were being thrown out immediately. I made the change and it should be working properly now. :-) Raymond |