summaryrefslogtreecommitdiff
path: root/sshd.c
diff options
context:
space:
mode:
Diffstat (limited to 'sshd.c')
-rw-r--r--sshd.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sshd.c b/sshd.c
index eaf3d322a..d2c1cac09 100644
--- a/sshd.c
+++ b/sshd.c
@@ -40,7 +40,7 @@
40 */ 40 */
41 41
42#include "includes.h" 42#include "includes.h"
43RCSID("$OpenBSD: sshd.c,v 1.193 2001/04/12 20:09:38 stevesk Exp $"); 43RCSID("$OpenBSD: sshd.c,v 1.194 2001/04/15 08:43:47 markus Exp $");
44 44
45#include <openssl/dh.h> 45#include <openssl/dh.h>
46#include <openssl/bn.h> 46#include <openssl/bn.h>
@@ -799,9 +799,9 @@ main(int ac, char **av)
799 799
800 /* Start listening for a socket, unless started from inetd. */ 800 /* Start listening for a socket, unless started from inetd. */
801 if (inetd_flag) { 801 if (inetd_flag) {
802 int s1, s2; 802 int s1;
803 s1 = dup(0); /* Make sure descriptors 0, 1, and 2 are in use. */ 803 s1 = dup(0); /* Make sure descriptors 0, 1, and 2 are in use. */
804 s2 = dup(s1); 804 dup(s1);
805 sock_in = dup(0); 805 sock_in = dup(0);
806 sock_out = dup(1); 806 sock_out = dup(1);
807 startup_pipe = -1; 807 startup_pipe = -1;