Add changes for internationalized strings missed on last commit.
[clsql.git] / uffi / clsql-uffi.lisp
index 4f9479d0b1c0f97025ce05a0a7142492757d502b..03ce0745359ea36f95816e783f22c114e2ad0167 100644 (file)
@@ -7,9 +7,7 @@
 ;;;; Programmers:   Kevin M. Rosenberg
 ;;;; Date Started:  Mar 2002
 ;;;;
-;;;; $Id$
-;;;;
-;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg
+;;;; This file, part of CLSQL, is Copyright (c) 2002-2010 by Kevin M. Rosenberg
 ;;;;
 ;;;; CLSQL users are granted the rights to distribute and use this software
 ;;;; as governed by the terms of the Lisp Lesser GNU Public License
               (uffi:convert-from-foreign-usb8 char-ptr length)
             (error "Can't return blob since length is not specified.")))
          (t
-          ;; sb-unicode still broken with converting with length, assume
+          ;; sb-unicode doesn't work converting with length, assume
           ;; that string is null terminated
           #+sb-unicode
-          (uffi:convert-from-foreign-string char-ptr :locale :none)
+          (uffi:convert-from-foreign-string char-ptr)
           #-sb-unicode
           (if length
-              (uffi:convert-from-foreign-string char-ptr :locale :none
+              (uffi:convert-from-foreign-string char-ptr
                                                 :null-terminated-p nil
                                                 :length length)
-            (uffi:convert-from-foreign-string char-ptr :locale :none))))))))
+            (uffi:convert-from-foreign-string char-ptr))))))))