diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 2002-02-06 14:55:17 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 2002-02-06 14:55:17 +0000 |
commit | baad33b3fa533fb5f377050449ddf405733e7693 (patch) | |
tree | c14fa004f716b11f237bef4453af25d93bed94e9 /usr.bin/ssh/ssh.c | |
parent | 5ee62c8b71b9e656ebc7c8d99367142fb8359dc0 (diff) |
channel_new never returns NULL, mouring@; ok djm@
Diffstat (limited to 'usr.bin/ssh/ssh.c')
-rw-r--r-- | usr.bin/ssh/ssh.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/usr.bin/ssh/ssh.c b/usr.bin/ssh/ssh.c index 1e9d2c8070b..84f53f8a5ba 100644 --- a/usr.bin/ssh/ssh.c +++ b/usr.bin/ssh/ssh.c @@ -39,7 +39,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: ssh.c,v 1.161 2002/02/05 14:32:55 markus Exp $"); +RCSID("$OpenBSD: ssh.c,v 1.162 2002/02/06 14:55:16 markus Exp $"); #include <openssl/evp.h> #include <openssl/err.h> @@ -1135,8 +1135,6 @@ ssh_session2_open(void) "session", SSH_CHANNEL_OPENING, in, out, err, window, packetmax, CHAN_EXTENDED_WRITE, xstrdup("client-session"), /*nonblock*/0); - if (c == NULL) - fatal("ssh_session2_open: channel_new failed"); debug3("ssh_session2_open: channel_new: %d", c->self); |