Re: Re: problems with latest portableaserve and Corman Lisp 2.01

"Chris Double" <[email protected]> Mon, 28 Jul 2003 10:20:16 +1200
Newsgroups gmane.lisp.corman
Message-ID <[email protected]>
The problem appears to be the following lines of code in client.cl:

		    (values 
		     (if (eq format :text)
                         (let ((result (make-string (length body))))
                           (map-into result #'code-char body)
                           result)
                         body)
		     (client-request-response-code creq)
		     (client-request-headers  creq)
		     (client-request-uri creq)))))

You can try replacing these lines of code with:

		    (values 
                     body
		     (client-request-response-code creq)
		     (client-request-headers  creq)
		     (client-request-uri creq)))))

'body' appears to be an array of characters rather than array of integers
already. So the attempt to convert it to a string fails.

Chris.
-- 
  Chris Double
  [email protected]

------------------------ Yahoo! Groups Sponsor ---------------------~-->
Buy Toner for Your Printer or Fax at LaserTonerSuperstore.com-Save 55%!
We have your brand: HP, IBM, Canon, Xerox, Apple and many more for less!
http://www.LaserTonerSuperstore.com
http://us.click.yahoo.com/YmQqWC/qicGAA/ySSFAA/SyjtlB/TM
---------------------------------------------------------------------~->

To unsubscribe from this group, send an email to:
[email protected]

 

Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/