summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordjm <djm>2000-07-11 23:45:27 +0000
committerdjm <djm>2000-07-11 23:45:27 +0000
commit6bc0d9e8efee77514295d9bbdee3dbf275bed6e1 (patch)
tree5d6c6eaa9b2623cc7627393b96fee0d4c6d74ee5
parentd2582aa09275bbc1e1666f377972dc589d54c6dc (diff)
downloadopenssh-6bc0d9e8efee77514295d9bbdee3dbf275bed6e1.tar.gz
- (djm) OpenBSD CVS Updates:
- deraadt@cvs.openbsd.org 2000/07/11 02:11:34 [session.c sshd.c ] make MaxStartups code still work with -d; djm - deraadt@cvs.openbsd.org 2000/07/11 13:17:45 [readconf.c ssh_config] disable FallBackToRsh by default
-rw-r--r--ChangeLog10
-rw-r--r--readconf.c4
-rw-r--r--session.c10
-rw-r--r--ssh_config2
-rw-r--r--sshd.c4
5 files changed, 22 insertions, 8 deletions
diff --git a/ChangeLog b/ChangeLog
index 16bd6649..52df47d9 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,13 @@
+20000712
+ - Remove -lresolve for Reliant Unix
+ - (djm) OpenBSD CVS Updates:
+ - deraadt@cvs.openbsd.org 2000/07/11 02:11:34
+ [session.c sshd.c ]
+ make MaxStartups code still work with -d; djm
+ - deraadt@cvs.openbsd.org 2000/07/11 13:17:45
+ [readconf.c ssh_config]
+ disable FallBackToRsh by default
+
20000711
- (djm) Fixup for AIX getuserattr() support from Tom Bertelson
<tbert@abac.com>
diff --git a/readconf.c b/readconf.c
index 28aa0a8b..c514e9b5 100644
--- a/readconf.c
+++ b/readconf.c
@@ -14,7 +14,7 @@
*/
#include "includes.h"
-RCSID("$OpenBSD: readconf.c,v 1.40 2000/07/10 16:27:05 ho Exp $");
+RCSID("$OpenBSD: readconf.c,v 1.41 2000/07/11 19:17:44 deraadt Exp $");
#include "ssh.h"
#include "cipher.h"
@@ -739,7 +739,7 @@ fill_default_options(Options * options)
if (options->rhosts_rsa_authentication == -1)
options->rhosts_rsa_authentication = 1;
if (options->fallback_to_rsh == -1)
- options->fallback_to_rsh = 1;
+ options->fallback_to_rsh = 0;
if (options->use_rsh == -1)
options->use_rsh = 0;
if (options->batch_mode == -1)
diff --git a/session.c b/session.c
index abf3ef34..3e889dbf 100644
--- a/session.c
+++ b/session.c
@@ -8,7 +8,7 @@
*/
#include "includes.h"
-RCSID("$OpenBSD: session.c,v 1.22 2000/07/05 20:18:07 deraadt Exp $");
+RCSID("$OpenBSD: session.c,v 1.23 2000/07/11 08:11:33 deraadt Exp $");
#include "xmalloc.h"
#include "ssh.h"
@@ -169,8 +169,10 @@ do_authenticated(struct passwd * pw)
* authentication.
*/
alarm(0);
- if (startup_pipe != -1)
+ if (startup_pipe != -1) {
close(startup_pipe);
+ startup_pipe = -1;
+ }
/*
* Inform the channel mechanism that we are the server side and that
@@ -1793,8 +1795,10 @@ do_authenticated2(void)
* authentication.
*/
alarm(0);
- if (startup_pipe != -1)
+ if (startup_pipe != -1) {
close(startup_pipe);
+ startup_pipe = -1;
+ }
server_loop2();
if (xauthfile)
xauthfile_cleanup_proc(NULL);
diff --git a/ssh_config b/ssh_config
index 5963b16d..70275b39 100644
--- a/ssh_config
+++ b/ssh_config
@@ -19,7 +19,7 @@
# RhostsRSAAuthentication yes
# RSAAuthentication yes
# PasswordAuthentication yes
-# FallBackToRsh yes
+# FallBackToRsh no
# UseRsh no
# BatchMode no
# CheckHostIP yes
diff --git a/sshd.c b/sshd.c
index e53629d4..cab0dd6f 100644
--- a/sshd.c
+++ b/sshd.c
@@ -14,7 +14,7 @@
*/
#include "includes.h"
-RCSID("$OpenBSD: sshd.c,v 1.121 2000/07/05 21:35:56 provos Exp $");
+RCSID("$OpenBSD: sshd.c,v 1.122 2000/07/11 08:11:34 deraadt Exp $");
#include "xmalloc.h"
#include "rsa.h"
@@ -854,8 +854,8 @@ main(int ac, char **av)
close_listen_socks();
sock_in = newsock;
sock_out = newsock;
- pid = getpid();
startup_pipe = -1;
+ pid = getpid();
break;
} else {
/*