Remove CVS $Id$ keyword
[clsql.git] / sql / generic-postgresql.lisp
index 70a8e9fb9dc8aa5887ad2f81e07faa26f83efefd..25f67082b6e123974477922f16cd3c3784c81120 100644 (file)
@@ -1,8 +1,6 @@
 ;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
 ;;;; *************************************************************************
 ;;;;
-;;;; $Id$
-;;;;
 ;;;; Generic postgresql layer, used by db-postgresql and db-postgresql-socket
 ;;;;
 ;;;; This file is part of CLSQL.
       database nil nil)))))
 
 (defun postgresql-database-list (connection-spec type)
-  (destructuring-bind (host name user password) connection-spec
+  (destructuring-bind (host name &rest other-args) connection-spec
     (declare (ignore name))
-    (let ((database (database-connect (list host "template1" user password)
+    (let ((database (database-connect (list* host "template1" other-args)
                                       type)))
       (unwind-protect
            (progn