Fix bug when using SSH in Pud
This commit is contained in:
parent
5e9ed1bbd0
commit
ff16e20067
1 changed files with 2 additions and 2 deletions
4
pud.org
4
pud.org
|
@ -2,7 +2,7 @@
|
|||
#+author: Howard X. Abrams
|
||||
#+date: 2025-01-18
|
||||
#+filetags: emacs hamacs
|
||||
#+lastmod: [2025-03-03 Mon]
|
||||
#+lastmod: [2025-03-21 Fri]
|
||||
|
||||
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)
|
||||
(telnet (append (cons pud-telnet-path pud-cli-arguments)
|
||||
(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)))
|
||||
(t (error "Unsupported connection type")))))
|
||||
#+END_SRC
|
||||
|
|
Loading…
Reference in a new issue