ssh: Fix type that broke offloading.

Reported by Simon Streit <simon@netpanic.org>.
Regression introduced in 3270308eeb.

* guix/ssh.scm (remote-daemon-channel)[redirect]: Unquote SOCKET-NAME.
This commit is contained in:
Ludovic Courtès 2021-05-11 12:21:12 +02:00
parent a232a40b00
commit da28efef36
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 1 additions and 1 deletions

View File

@ -268,7 +268,7 @@ EXP never returns or calls 'primitive-exit' when it's done."
;; Use 'connect-to-daemon' to honor GUIX_DAEMON_SOCKET.
(let ((sock (connect-to-daemon (or (getenv "GUIX_DAEMON_SOCKET")
socket-name)))
,socket-name)))
(stdin (current-input-port))
(stdout (current-output-port))
(select* (lambda (read write except)