[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/03: ssh: Fix type that broke offloading.
From: |
guix-commits |
Subject: |
01/03: ssh: Fix type that broke offloading. |
Date: |
Tue, 11 May 2021 06:50:43 -0400 (EDT) |
civodul pushed a commit to branch master
in repository guix.
commit da28efef36af8925bcd9e40a81cbf552cf8c2d02
Author: Ludovic Courtès <ludo@gnu.org>
AuthorDate: Tue May 11 12:21:12 2021 +0200
ssh: Fix type that broke offloading.
Reported by Simon Streit <simon@netpanic.org>.
Regression introduced in 3270308eebe82075d2f02517c5a2b1599928495c.
* guix/ssh.scm (remote-daemon-channel)[redirect]: Unquote SOCKET-NAME.
---
guix/ssh.scm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/guix/ssh.scm b/guix/ssh.scm
index 77a9732..232b6bf 100644
--- a/guix/ssh.scm
+++ b/guix/ssh.scm
@@ -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)