Skip to content

Commit

Permalink
Fix: undefined variable warning
Browse files Browse the repository at this point in the history
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`.
  • Loading branch information
kilianmh authored and dnaeon committed Jul 2, 2024
1 parent 789ea28 commit 5187952
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cl-ssh-keys.asd
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
(:file "rfc8017" :depends-on ("package"))
(:file "generics" :depends-on ("package"))
(:file "public-key" :depends-on ("package"))
(:file "private-key" :depends-on ("package"))
(:file "private-key" :depends-on ("package" "ciphers"))
(:file "conditions" :depends-on ("package"))
(:file "key-types" :depends-on ("package"))
(:file "signature" :depends-on ("package"))
Expand Down

0 comments on commit 5187952

Please sign in to comment.