From 59623414b6bac96d5c5015c4e55f711992b043cd Mon Sep 17 00:00:00 2001 From: Slava Pestov Date: Mon, 8 Sep 2008 01:10:12 -0500 Subject: [PATCH] Fix bug spotted by Ed --- basis/http/http.factor | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/basis/http/http.factor b/basis/http/http.factor index e450631d94..03cca05ff3 100755 --- a/basis/http/http.factor +++ b/basis/http/http.factor @@ -113,7 +113,7 @@ TUPLE: cookie name value version comment path domain expires max-age http-only s { [ dup real? ] [ number>string ] } [ ] } cond - check-cookie-string "=" swap check-cookie-string 3append , + [ check-cookie-string ] bi@ "=" swap 3append , ] } case ;