GNU bug report logs -
#6957
url-cookie-expired-p
Previous Next
Reported by: shawn boles <shawn.boles <at> gmail.com>
Date: Tue, 31 Aug 2010 20:08:02 UTC
Severity: normal
Fixed in version 23.3
Done: Glenn Morris <rgm <at> gnu.org>
Bug is archived. No further changes may be made.
Full log
View this message in rfc822 format
[Message part 1 (text/plain, inline)]
Hello,
Please forgive me if this list is not the correct recipient for this
message. If there is a better destination, I will be happy to send it
on.
I am working on a web services client that is mostly a wrapper around
URL Package. I am using GNU Emacs v.23.2. My client implementation
requires keeping tight rein on a session ID cookie. My sessions are
terminating abnormally. I believe I have tracked this issue to a bug
in url-cookie-expired-p.
If the cookie's expiration date is the same as today's date,
url-cookie-expired-p normalizes the times to seconds and compares the
difference. I believe the problem is in the normalization algorithm.
In pseudo-code, the current implementation does:
(+ (* 360 seconds) (* 60 minutes) (* 1 hours))
I believe this should be:
(+ (* 1 seconds) (* 60 minutes) (* 360 hours)).
As is, the result of the comparison is almost always dependent on the
number of seconds in the time strings. It is interesting how
frequently this mistaken comparison is correct.
I have attached a patch.
Thank you,
-shawn
[url-cookie.el.patch (application/octet-stream, attachment)]
This bug report was last modified 14 years and 342 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.