Fix typo in POST encoder.
authorChris Hanson <org/chris-hanson/cph>
Thu, 9 Jul 2009 05:55:47 +0000 (23:55 -0600)
committerChris Hanson <org/chris-hanson/cph>
Thu, 9 Jul 2009 05:55:47 +0000 (23:55 -0600)
src/runtime/html-form-codec.scm

index b84a89afd9fd12c421f8f7d62f823e2343424346..50b550d7ae2cc6b33442cc7879b2a998d0d61729 100644 (file)
@@ -1,6 +1,6 @@
 #| -*-Scheme-*-
 
-$Id: html-form-codec.scm,v 14.1 2008/08/24 07:20:03 cph Exp $
+$Id$
 
 Copyright (C) 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994,
     1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
@@ -129,7 +129,7 @@ USA.
   (let ((end (string-length string)))
     (do ((i 0 (fix:+ i 1)))
        ((not (fix:< i end)))
-      (encode-octet (string-ref string 0) port))))
+      (encode-octet (string-ref string i) port))))
 
 (define (encode-octet char port)
   (cond ((char-unreserved? char)