aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2021-02-22 11:59:18 -0700
committerSean Whitton <spwhitton@spwhitton.name>2021-02-22 11:59:18 -0700
commit1e8badf482c077982cb8922bf4fbc09838c4a31a (patch)
tree833574382104c9618d3e3099905dff77b9b2f7ae
parent3dd5d2413d33cfcfb203fa972f298b2a8e270da5 (diff)
downloadconsfigurator-1e8badf482c077982cb8922bf4fbc09838c4a31a.tar.gz
fix default implementation of PREPROCESS-CONNECTION-ARGS
Signed-off-by: Sean Whitton <spwhitton@spwhitton.name>
-rw-r--r--src/connection.lisp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/connection.lisp b/src/connection.lisp
index a321d1e..650679c 100644
--- a/src/connection.lisp
+++ b/src/connection.lisp
@@ -47,8 +47,8 @@ return value is used as replacement keyword arguments to the connection.
For an example of usage, see the :SUDO connection type."))
-(defmethod preprocess-connection-args ((type symbol) &key)
- (values))
+(defmethod preprocess-connection-args ((type symbol) &rest args &key)
+ (cons type args))
(defclass connection ()
((parent