summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--ssh.c5
2 files changed, 8 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 890625fa2..1ad2b3573 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -29,6 +29,10 @@
29 GSSAPIDelegateCredentials=yes. This is symmetric with -k (disable GSSAPI) 29 GSSAPIDelegateCredentials=yes. This is symmetric with -k (disable GSSAPI)
30 and is useful for hosts with /home on Kerberised NFS; bz #1312 30 and is useful for hosts with /home on Kerberised NFS; bz #1312
31 patch from Markus.Kuhn AT cl.cam.ac.uk; ok dtucker@ markus@ 31 patch from Markus.Kuhn AT cl.cam.ac.uk; ok dtucker@ markus@
32 - djm@cvs.openbsd.org 2007/06/12 11:45:27
33 [ssh.c]
34 improved exit message from multiplex slave sessions; bz #1262
35 reported by alexandre.nunes AT gmail.com; ok dtucker@
32 36
3320070611 3720070611
34 - (djm) Bugzilla #1306: silence spurious error messages from hang-on-exit 38 - (djm) Bugzilla #1306: silence spurious error messages from hang-on-exit
@@ -3043,4 +3047,4 @@
3043 OpenServer 6 and add osr5bigcrypt support so when someone migrates 3047 OpenServer 6 and add osr5bigcrypt support so when someone migrates
3044 passwords between UnixWare and OpenServer they will still work. OK dtucker@ 3048 passwords between UnixWare and OpenServer they will still work. OK dtucker@
3045 3049
3046$Id: ChangeLog,v 1.4694 2007/06/12 13:43:16 dtucker Exp $ 3050$Id: ChangeLog,v 1.4695 2007/06/12 13:44:10 dtucker Exp $
diff --git a/ssh.c b/ssh.c
index 5155da791..9af61d3c2 100644
--- a/ssh.c
+++ b/ssh.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: ssh.c,v 1.297 2007/06/12 11:15:17 djm Exp $ */ 1/* $OpenBSD: ssh.c,v 1.298 2007/06/12 11:45:27 djm Exp $ */
2/* 2/*
3 * Author: Tatu Ylonen <ylo@cs.hut.fi> 3 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland 4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -1485,7 +1485,8 @@ control_client(const char *path)
1485 debug2("Received exit status from master %d", exitval); 1485 debug2("Received exit status from master %d", exitval);
1486 1486
1487 if (tty_flag && options.log_level != SYSLOG_LEVEL_QUIET) 1487 if (tty_flag && options.log_level != SYSLOG_LEVEL_QUIET)
1488 fprintf(stderr, "Connection to master closed.\r\n"); 1488 fprintf(stderr, "Shared connection to %s closed.\r\n",
1489 host);
1489 1490
1490 exit(exitval); 1491 exit(exitval);
1491} 1492}