diff options
Diffstat (limited to 'guix/store/ssh.scm')
-rw-r--r-- | guix/store/ssh.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/store/ssh.scm b/guix/store/ssh.scm index 09c0832505..7e6371acbc 100644 --- a/guix/store/ssh.scm +++ b/guix/store/ssh.scm @@ -33,7 +33,7 @@ "Connect to the SSH daemon at URI, a URI object with the 'ssh' scheme." (remote-daemon-channel (open-ssh-session (uri-host uri) - #:port (or (uri-port uri) 22) + #:port (uri-port uri) #:user (uri-userinfo uri)))) ;;; ssh.scm ends here |