r5590: fix concatenate
authorKevin M. Rosenberg <kevin@rosenberg.net>
Wed, 3 Sep 2003 18:23:57 +0000 (18:23 +0000)
committerKevin M. Rosenberg <kevin@rosenberg.net>
Wed, 3 Sep 2003 18:23:57 +0000 (18:23 +0000)
db-postgresql-socket/postgresql-socket-sql.lisp
debian/changelog

index a4d946b812c6ed64a5b7e6005b595c3664418e9d..da84c943c988695248c0449eddaee9e1e264a1a8 100644 (file)
@@ -8,7 +8,7 @@
 ;;;;                Original code by Pierre R. Mai 
 ;;;; Date Started:  Feb 2002
 ;;;;
 ;;;;                Original code by Pierre R. Mai 
 ;;;; Date Started:  Feb 2002
 ;;;;
-;;;; $Id: postgresql-socket-sql.lisp,v 1.3 2003/08/31 08:22:16 kevin Exp $
+;;;; $Id: postgresql-socket-sql.lisp,v 1.4 2003/09/03 18:23:57 kevin Exp $
 ;;;;
 ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg
 ;;;; and Copyright (c) 1999-2001 by Pierre R. Mai
 ;;;;
 ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg
 ;;;; and Copyright (c) 1999-2001 by Pierre R. Mai
@@ -155,10 +155,11 @@ doesn't depend on UFFI."
        (pathname (namestring host))
        (string host))
       (when port 
        (pathname (namestring host))
        (string host))
       (when port 
-       (concatenate ":"
-         (etypecase port
-           (integer (write-to-string port))
-           (string port))))
+       (concatenate 'string
+                    ":"
+                    (etypecase port
+                      (integer (write-to-string port))
+                      (string port))))
       "/" db "/" user)))
 
 (defmethod database-connect (connection-spec 
       "/" db "/" user)))
 
 (defmethod database-connect (connection-spec 
index 167faa1ae071bbe677018d693a1ebd217b1fcd6f..babf461bd388b59ba6a02970d6334aa17c8950a5 100644 (file)
@@ -1,3 +1,9 @@
+cl-sql (1.7.5-1) unstable; urgency=low
+
+  * Another fix for previous bug (closes: 207813)
+
+ -- Kevin M. Rosenberg <kmr@debian.org>  Wed,  3 Sep 2003 12:21:19 -0600
+
 cl-sql (1.7.4-1) unstable; urgency=low
 
   * New upstream (closes: 207813)
 cl-sql (1.7.4-1) unstable; urgency=low
 
   * New upstream (closes: 207813)