Tweak unparser for requests.
authorChris Hanson <org/chris-hanson/cph>
Sun, 21 Sep 2008 23:49:05 +0000 (23:49 +0000)
committerChris Hanson <org/chris-hanson/cph>
Sun, 21 Sep 2008 23:49:05 +0000 (23:49 +0000)
v7/src/runtime/httpio.scm

index e5b0c119f97818b107cabe2c14ee0cdd1ffab301..e84a11f87adfa45a164df07429ddfcf6e7d3a773 100644 (file)
@@ -1,6 +1,6 @@
 #| -*-Scheme-*-
 
-$Id: httpio.scm,v 14.11 2008/09/21 22:20:18 cph Exp $
+$Id: httpio.scm,v 14.12 2008/09/21 23:49:05 cph Exp $
 
 Copyright (C) 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994,
     1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
@@ -56,7 +56,7 @@ USA.
   (simple-unparser-method 'HTTP-REQUEST
     (lambda (request)
       (list (http-request-method request)
-           (http-request-uri request)))))
+           (uri->string (http-request-uri request))))))
 
 (define-record-type <http-response>
     (%make-http-response version status reason headers body)