diff options
author | 2007-06-12 11:45:27 +0000 | |
---|---|---|
committer | 2007-06-12 11:45:27 +0000 | |
commit | 934d3369ad7a4ed8b7805ddf1fd32045cc9f6617 (patch) | |
tree | 5777c392b5b0249e2df4f21e7b3f70d672e65960 /usr.bin/ssh/ssh.c | |
parent | Add "-K" flag for ssh to set GSSAPIAuthentication=yes and (diff) | |
download | wireguard-openbsd-934d3369ad7a4ed8b7805ddf1fd32045cc9f6617.tar.xz wireguard-openbsd-934d3369ad7a4ed8b7805ddf1fd32045cc9f6617.zip |
improved exit message from multiplex slave sessions; bz #1262
reported by alexandre.nunes AT gmail.com; ok dtucker@
Diffstat (limited to 'usr.bin/ssh/ssh.c')
-rw-r--r-- | usr.bin/ssh/ssh.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/ssh/ssh.c b/usr.bin/ssh/ssh.c index 5f37f7f0b81..ad5b49a917f 100644 --- a/usr.bin/ssh/ssh.c +++ b/usr.bin/ssh/ssh.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ssh.c,v 1.297 2007/06/12 11:15:17 djm Exp $ */ +/* $OpenBSD: ssh.c,v 1.298 2007/06/12 11:45:27 djm Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -1460,7 +1460,8 @@ control_client(const char *path) debug2("Received exit status from master %d", exitval); if (tty_flag && options.log_level != SYSLOG_LEVEL_QUIET) - fprintf(stderr, "Connection to master closed.\r\n"); + fprintf(stderr, "Shared connection to %s closed.\r\n", + host); exit(exitval); } |