civodul pushed a commit to branch master
in repository guix.

commit da28efef36af8925bcd9e40a81cbf552cf8c2d02
Author: Ludovic Courtès <[email protected]>
AuthorDate: Tue May 11 12:21:12 2021 +0200

    ssh: Fix type that broke offloading.
    
    Reported by Simon Streit <[email protected]>.
    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)

Reply via email to