Fix bug in Tramp argument computing
* lisp/net/tramp-sh.el (tramp-ssh-or-plink-options): Return always a string. (Bug#76553)
This commit is contained in:
parent
55768eaaaa
commit
c2d2094605
1 changed files with 4 additions and 1 deletions
|
@ -4951,7 +4951,10 @@ Goes through the list `tramp-inline-compress-commands'."
|
|||
;; ControlPersist option is introduced in OpenSSH 5.6.
|
||||
(when (and (not (eq tramp-use-connection-share 'suppress))
|
||||
(tramp-ssh-option-exists-p vec "ControlPersist=no"))
|
||||
" -o ControlPersist=no")))))))
|
||||
" -o ControlPersist=no")))))
|
||||
|
||||
;; Return a string, whatsoever.
|
||||
(t "")))
|
||||
|
||||
(defun tramp-scp-strict-file-name-checking (vec)
|
||||
"Return the strict file name checking argument of the local scp."
|
||||
|
|
Loading…
Add table
Reference in a new issue