diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 2001-04-15 08:43:48 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 2001-04-15 08:43:48 +0000 |
commit | 6585ea45efd718a3ce89e9bd9596a892824f65c8 (patch) | |
tree | c0701b7aace45c1d8fff73727934f82e4310828b /usr.bin/ssh/sshd.c | |
parent | eec6fc2cdaf9318e5cd310cf0863d77276d49d0a (diff) |
some unused variable and typos; from tomh@po.crl.go.jp
Diffstat (limited to 'usr.bin/ssh/sshd.c')
-rw-r--r-- | usr.bin/ssh/sshd.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/ssh/sshd.c b/usr.bin/ssh/sshd.c index 661678c2837..db39d929e2a 100644 --- a/usr.bin/ssh/sshd.c +++ b/usr.bin/ssh/sshd.c @@ -40,7 +40,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: sshd.c,v 1.193 2001/04/12 20:09:38 stevesk Exp $"); +RCSID("$OpenBSD: sshd.c,v 1.194 2001/04/15 08:43:47 markus Exp $"); #include <openssl/dh.h> #include <openssl/bn.h> @@ -780,9 +780,9 @@ main(int ac, char **av) /* Start listening for a socket, unless started from inetd. */ if (inetd_flag) { - int s1, s2; + int s1; s1 = dup(0); /* Make sure descriptors 0, 1, and 2 are in use. */ - s2 = dup(s1); + dup(s1); sock_in = dup(0); sock_out = dup(1); startup_pipe = -1; |