Skip to content

Commit 5187952

Browse files
kilianmhdnaeon
authored andcommitted
Fix: undefined variable warning
When loading cl-ssh-keys we get: ; file: .../src/private-key.lisp ; caught WARNING: ; undefined variable: CL-SSH-KEYS:*DEFAULT-CIPHER-NAME* `*default-cipher-name*` is defined in `ciphers.lisp` so the depends-on clause of `private-key` has to include `ciphers`.
1 parent 789ea28 commit 5187952

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cl-ssh-keys.asd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
(:file "rfc8017" :depends-on ("package"))
2828
(:file "generics" :depends-on ("package"))
2929
(:file "public-key" :depends-on ("package"))
30-
(:file "private-key" :depends-on ("package"))
30+
(:file "private-key" :depends-on ("package" "ciphers"))
3131
(:file "conditions" :depends-on ("package"))
3232
(:file "key-types" :depends-on ("package"))
3333
(:file "signature" :depends-on ("package"))

0 commit comments

Comments
 (0)