summaryrefslogtreecommitdiff
path: root/sshd.c
diff options
context:
space:
mode:
Diffstat (limited to 'sshd.c')
-rw-r--r--sshd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sshd.c b/sshd.c
index c7dd8cb7a..65ef7e850 100644
--- a/sshd.c
+++ b/sshd.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: sshd.c,v 1.457 2015/07/30 00:01:34 djm Exp $ */ 1/* $OpenBSD: sshd.c,v 1.458 2015/08/20 22:32:42 deraadt Exp $ */
2/* 2/*
3 * Author: Tatu Ylonen <ylo@cs.hut.fi> 3 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland 4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -1253,7 +1253,7 @@ server_accept_loop(int *sock_in, int *sock_out, int *newsock, int *config_s)
1253 sighup_restart(); 1253 sighup_restart();
1254 if (fdset != NULL) 1254 if (fdset != NULL)
1255 free(fdset); 1255 free(fdset);
1256 fdset = (fd_set *)xcalloc(howmany(maxfd + 1, NFDBITS), 1256 fdset = xcalloc(howmany(maxfd + 1, NFDBITS),
1257 sizeof(fd_mask)); 1257 sizeof(fd_mask));
1258 1258
1259 for (i = 0; i < num_listen_socks; i++) 1259 for (i = 0; i < num_listen_socks; i++)