From: Russ Tyndall Date: Fri, 10 Oct 2008 20:18:29 +0000 (-0400) Subject: added :external-format :utf8 on the octets-to-string call X-Git-Url: http://git.kpe.io/?a=commitdiff_plain;h=17c19c236f76a1b3d797411e1ef8c36fce52d23c;p=clsql.git added :external-format :utf8 on the octets-to-string call --- diff --git a/db-postgresql-socket/postgresql-socket-api.lisp b/db-postgresql-socket/postgresql-socket-api.lisp index 64c4240..2989d57 100644 --- a/db-postgresql-socket/postgresql-socket-api.lisp +++ b/db-postgresql-socket/postgresql-socket-api.lisp @@ -226,7 +226,7 @@ socket interface" (declare (type (simple-array (unsigned-byte 8) (*)) bytes)) (read-sequence bytes stream) (if allow-wide - (sb-ext:octets-to-string bytes) + (sb-ext:octets-to-string bytes :external-format :utf8) (map 'string #'code-char bytes)))) ;;; Support for encrypted password transmission