summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2004-09-11 23:09:53 +1000
committerDarren Tucker <dtucker@zip.com.au>2004-09-11 23:09:53 +1000
commita2a3ed0010fc10a1c39404a3c3cddd3de27019b2 (patch)
tree68ab6c41f00f45431a9e71f360fd4bbac1e5a850
parent77fc29eeb382974ae063227c249ee3b98646e38a (diff)
- (dtucker) [session.c] Bug #927: make .hushlogin silent again. ok djm@
-rw-r--r--ChangeLog3
-rw-r--r--session.c2
2 files changed, 3 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 0c0d2c6fc..268e0f9a9 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -10,6 +10,7 @@
10 Bug #892: Send messages from failing PAM account modules to the client via 10 Bug #892: Send messages from failing PAM account modules to the client via
11 SSH2_MSG_USERAUTH_BANNER messages. Note that this will not happen with 11 SSH2_MSG_USERAUTH_BANNER messages. Note that this will not happen with
12 SSH2 kbdint authentication, which need to be dealt with separately. ok djm@ 12 SSH2 kbdint authentication, which need to be dealt with separately. ok djm@
13 - (dtucker) [session.c] Bug #927: make .hushlogin silent again. ok djm@
13 14
1420040830 1520040830
15 - (dtucker) [session.c openbsd-compat/bsd-cygwin_util.{c,h}] Bug #915: only 16 - (dtucker) [session.c openbsd-compat/bsd-cygwin_util.{c,h}] Bug #915: only
@@ -1729,4 +1730,4 @@
1729 - (djm) Trim deprecated options from INSTALL. Mention UsePAM 1730 - (djm) Trim deprecated options from INSTALL. Mention UsePAM
1730 - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu 1731 - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
1731 1732
1732$Id: ChangeLog,v 1.3544 2004/09/11 13:07:03 dtucker Exp $ 1733$Id: ChangeLog,v 1.3545 2004/09/11 13:09:53 dtucker Exp $
diff --git a/session.c b/session.c
index 7a70b82e6..6844720d4 100644
--- a/session.c
+++ b/session.c
@@ -1434,7 +1434,7 @@ do_child(Session *s, const char *command)
1434 * generated messages, so if this in an interactive 1434 * generated messages, so if this in an interactive
1435 * login then display them too. 1435 * login then display them too.
1436 */ 1436 */
1437 if (command == NULL) 1437 if (!check_quietlogin(s, command))
1438 display_loginmsg(); 1438 display_loginmsg();
1439#endif /* HAVE_OSF_SIA */ 1439#endif /* HAVE_OSF_SIA */
1440 } 1440 }