summaryrefslogtreecommitdiff
path: root/utils.lisp
diff options
context:
space:
mode:
authorMatthias Benkard <code@mail.matthias.benkard.de>2009-10-07 14:51:52 +0200
committerMatthias Benkard <code@mail.matthias.benkard.de>2009-10-07 14:51:52 +0200
commitb501385ad1ac0a20b29f14ac146657653a5ddb06 (patch)
tree4d039ff484334b950b44228b63c0aa79e1341d8c /utils.lisp
parentd22a2222bd659d5ce43f85b173e7642e8b58e9f0 (diff)
Fix yet another typo.
Ignore-this: d4d7bdc04c395a58190df274ab38e63d darcs-hash:2653cda62f24b3fa3ed94c6385b7dc967b378e33
Diffstat (limited to 'utils.lisp')
-rw-r--r--utils.lisp2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils.lisp b/utils.lisp
index e73b7e4..89c3bf4 100644
--- a/utils.lisp
+++ b/utils.lisp
@@ -331,7 +331,7 @@ ELEMENT-TYPE as the stream's."
(when *if-modified-since*
(let* ((date-recognisers (mapcar #'cybertiggyr-time::make-fmt-recognizer '("%A, %d-%B-%y %H:%M:%S GMT" "%A, %d %B %Y %H:%M:%S GMT" "%A %B %d %H:%M:%S %Y")))
(requested-time (cybertiggyr-time:parse-time *if-modified-since* date-recognisers)))
- (when (and (integerp time) (>= requested-time (compute-journal-last-modified-date)))
+ (when (and (integerp requested-time) (>= requested-time (compute-journal-last-modified-date)))
(http-add-header "Status: 304 Not Modified")
(http-send-headers)
(ext:quit 0))))