diff options
author | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2023-08-27 08:11:03 +0200 |
---|---|---|
committer | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2023-08-27 08:11:03 +0200 |
commit | baf5b0745446dabe8166d860996dc54cfa09db3e (patch) | |
tree | 2361e8f8b085d59ec998b1037329b9fe5237b2c2 /guix/ssh.scm | |
parent | 8a0a5b4e6289eaa357bd2134101507aea320cc39 (diff) | |
parent | 5856e185a3d4f47e27dfd064a231b3a1d44a6494 (diff) |
Merge tracking branch 'master' into gnome-team.
Diffstat (limited to 'guix/ssh.scm')
-rw-r--r-- | guix/ssh.scm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/guix/ssh.scm b/guix/ssh.scm index b7b9807ebf..c4617d2c74 100644 --- a/guix/ssh.scm +++ b/guix/ssh.scm @@ -175,8 +175,9 @@ to SSH server at '~a'") (disconnect! session) (raise (condition (&message - (message (format #f (G_ "SSH authentication failed for '~a': ~a~%") - host (get-error session))))))))))) + (message (format #f (G_ "SSH authentication failed for '~a@~a': ~a~%") + (session-get session 'user) host + (get-error session))))))))))) (x ;; Connection failed or timeout expired. (raise (formatted-message (G_ "SSH connection to '~a' failed: ~a~%") |