Fix bug when using SSH in Pud

This commit is contained in:
Howard Abrams 2025-03-30 10:00:06 -07:00
parent 5e9ed1bbd0
commit ff16e20067

View file

@ -2,7 +2,7 @@
#+author: Howard X. Abrams #+author: Howard X. Abrams
#+date: 2025-01-18 #+date: 2025-01-18
#+filetags: emacs hamacs #+filetags: emacs hamacs
#+lastmod: [2025-03-03 Mon] #+lastmod: [2025-03-21 Fri]
A literate programming file for a Comint-based MUD client. A literate programming file for a Comint-based MUD client.
@ -263,7 +263,7 @@ Command string to use, given a =world= with a connection type:
(cl-case (aref world 1) (cl-case (aref world 1)
(telnet (append (cons pud-telnet-path pud-cli-arguments) (telnet (append (cons pud-telnet-path pud-cli-arguments)
(list host port))) (list host port)))
(ssh (append (cons pud-cli-filepath-ssh pud-cli-arguments) (ssh (append (cons pud-ssh-path pud-cli-arguments)
(list "-p" port host))) (list "-p" port host)))
(t (error "Unsupported connection type"))))) (t (error "Unsupported connection type")))))
#+END_SRC #+END_SRC