summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorderaadt <deraadt@openbsd.org>1999-12-08 04:36:41 +0000
committerderaadt <deraadt@openbsd.org>1999-12-08 04:36:41 +0000
commitf302b5489562820ff1639152170069e7c85cb96e (patch)
tree3565bbba07474f49b18693aab90b4cb41fc6893b
parentDon't use stdio since we don't want the password to end up in stdio (diff)
downloadwireguard-openbsd-f302b5489562820ff1639152170069e7c85cb96e.tar.xz
wireguard-openbsd-f302b5489562820ff1639152170069e7c85cb96e.zip
careless niels
-rw-r--r--usr.bin/ssh/sshd.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.bin/ssh/sshd.c b/usr.bin/ssh/sshd.c
index 4df1266045b..e1d806546a3 100644
--- a/usr.bin/ssh/sshd.c
+++ b/usr.bin/ssh/sshd.c
@@ -11,7 +11,9 @@
*/
#include "includes.h"
-RCSID("$Id: sshd.c,v 1.71 1999/12/08 00:08:09 provos Exp $");
+RCSID("$Id: sshd.c,v 1.72 1999/12/08 04:36:41 deraadt Exp $");
+
+#include <poll.h>
#include "xmalloc.h"
#include "rsa.h"