diff options
author | Matthias Benkard <code@mail.matthias.benkard.de> | 2009-10-07 14:59:44 +0200 |
---|---|---|
committer | Matthias Benkard <code@mail.matthias.benkard.de> | 2009-10-07 14:59:44 +0200 |
commit | c45f1586910c3a76c3c91d35c74f8e9bd0c634ff (patch) | |
tree | 064635249dcfbb88d58b57b8fa0dec98ac1bccb8 | |
parent | 4ead8b702c8fa6b174272de08ca2edb98b9a564b (diff) |
Fix REVALIDATE-CACHE-OR-DIE.
Ignore-this: 9de0ed187bc65d8bf9590e7baf3403ce
darcs-hash:3ce99d83c7aa146ef63024bf5680bc82b6b2878c
-rw-r--r-- | utils.lisp | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -335,7 +335,7 @@ ELEMENT-TYPE as the stream's." (when (and (integerp requested-time) (integerp modified-time) (>= requested-time modified-time)) - (http-add-header "Status: 304 Not Modified") + (http-add-header "Status" "304 Not Modified") (http-send-headers) (ext:quit 0)))) #-clisp |