]> andersk Git - openssh.git/commitdiff
- djm@cvs.openbsd.org 2007/06/12 11:45:27
authordtucker <dtucker>
Tue, 12 Jun 2007 13:44:10 +0000 (13:44 +0000)
committerdtucker <dtucker>
Tue, 12 Jun 2007 13:44:10 +0000 (13:44 +0000)
     [ssh.c]
     improved exit message from multiplex slave sessions; bz #1262
     reported by alexandre.nunes AT gmail.com; ok dtucker@

ChangeLog
ssh.c

index 3dc3615c46d333bd6b9488a3a2d284771678837b..d73396fe71ac48a7480f05d4a0501ba6fbc50c4b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
      GSSAPIDelegateCredentials=yes. This is symmetric with -k (disable GSSAPI)
      and is useful for hosts with /home on Kerberised NFS; bz #1312
      patch from Markus.Kuhn AT cl.cam.ac.uk; ok dtucker@ markus@
+   - djm@cvs.openbsd.org 2007/06/12 11:45:27
+     [ssh.c]
+     improved exit message from multiplex slave sessions; bz #1262
+     reported by alexandre.nunes AT gmail.com; ok dtucker@
 
 20070611
  - (djm) Bugzilla #1306: silence spurious error messages from hang-on-exit
diff --git a/ssh.c b/ssh.c
index 5155da791f33afe52096f6569b003982537860e4..9af61d3c26f59e1dd816b1b5b61b85191d0df9e0 100644 (file)
--- a/ssh.c
+++ b/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
@@ -1485,7 +1485,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);
 }
This page took 0.317113 seconds and 5 git commands to generate.