From 17c19c236f76a1b3d797411e1ef8c36fce52d23c Mon Sep 17 00:00:00 2001 From: Russ Tyndall Date: Fri, 10 Oct 2008 16:18:29 -0400 Subject: [PATCH] added :external-format :utf8 on the octets-to-string call --- db-postgresql-socket/postgresql-socket-api.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.34.1