From: Kevin M. Rosenberg Date: Wed, 3 Sep 2003 18:23:57 +0000 (+0000) Subject: r5590: fix concatenate X-Git-Tag: v3.8.6~807 X-Git-Url: http://git.kpe.io/?p=clsql.git;a=commitdiff_plain;h=1b1554c5206df9cbaa8268cc6d210cd31d19667d r5590: fix concatenate --- diff --git a/db-postgresql-socket/postgresql-socket-sql.lisp b/db-postgresql-socket/postgresql-socket-sql.lisp index a4d946b..da84c94 100644 --- a/db-postgresql-socket/postgresql-socket-sql.lisp +++ b/db-postgresql-socket/postgresql-socket-sql.lisp @@ -8,7 +8,7 @@ ;;;; 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 @@ -155,10 +155,11 @@ doesn't depend on UFFI." (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 diff --git a/debian/changelog b/debian/changelog index 167faa1..babf461 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +cl-sql (1.7.5-1) unstable; urgency=low + + * Another fix for previous bug (closes: 207813) + + -- Kevin M. Rosenberg Wed, 3 Sep 2003 12:21:19 -0600 + cl-sql (1.7.4-1) unstable; urgency=low * New upstream (closes: 207813)