From: Chris Hanson <org/chris-hanson/cph>
Date: Thu, 25 Nov 2004 04:19:53 +0000 (+0000)
Subject: Fix typo in cookie parsing.
X-Git-Tag: 20090517-FFI~1434
X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=6bf1b8f179c4234a2c9de8df6c9820d274e7e942;p=mit-scheme.git

Fix typo in cookie parsing.
---

diff --git a/v7/src/ssp/mod-lisp.scm b/v7/src/ssp/mod-lisp.scm
index 6060b203f..f3a0b77a2 100644
--- a/v7/src/ssp/mod-lisp.scm
+++ b/v7/src/ssp/mod-lisp.scm
@@ -1,6 +1,6 @@
 #| -*-Scheme-*-
 
-$Id: mod-lisp.scm,v 1.20 2004/11/24 20:20:44 cph Exp $
+$Id: mod-lisp.scm,v 1.21 2004/11/25 04:19:53 cph Exp $
 
 Copyright 2003,2004 Massachusetts Institute of Technology
 
@@ -451,7 +451,7 @@ USA.
 				   (pair? (cdr nv))
 				   (null? (cddr nv))))
 			 (error "Malformed cookie value:" string))
-		     (cons (intern (car nv)) (cdr nv))))
+		     (cons (intern (car nv)) (cadr nv))))
 		 (map string-trim (burst-string string #\; #f))))))
 
 (define (set-cookie message name value attrs)