diff options
author | 2006-07-08 21:48:53 +0000 | |
---|---|---|
committer | 2006-07-08 21:48:53 +0000 | |
commit | 0970d26298e10dc1caa162261c61a71d37de81db (patch) | |
tree | 425e3c00e65f7647bd30aa08e84093a05bfe8618 | |
parent | move #include <sys/socket.h> out of includes.h (diff) | |
download | wireguard-openbsd-0970d26298e10dc1caa162261c61a71d37de81db.tar.xz wireguard-openbsd-0970d26298e10dc1caa162261c61a71d37de81db.zip |
missed these from last commit:
move #include <sys/socket.h> out of includes.h
-rw-r--r-- | usr.bin/ssh/monitor.c | 3 | ||||
-rw-r--r-- | usr.bin/ssh/session.c | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/usr.bin/ssh/monitor.c b/usr.bin/ssh/monitor.c index 1cdc0696893..c92441b6047 100644 --- a/usr.bin/ssh/monitor.c +++ b/usr.bin/ssh/monitor.c @@ -1,4 +1,4 @@ -/* $OpenBSD: monitor.c,v 1.78 2006/07/06 16:03:53 stevesk Exp $ */ +/* $OpenBSD: monitor.c,v 1.79 2006/07/08 21:48:53 stevesk Exp $ */ /* * Copyright 2002 Niels Provos <provos@citi.umich.edu> * Copyright 2002 Markus Friedl <markus@openbsd.org> @@ -29,6 +29,7 @@ #include <sys/types.h> #include <sys/wait.h> +#include <sys/socket.h> #include <openssl/dh.h> diff --git a/usr.bin/ssh/session.c b/usr.bin/ssh/session.c index ec3d85dd2f8..eb8e7735a6c 100644 --- a/usr.bin/ssh/session.c +++ b/usr.bin/ssh/session.c @@ -1,4 +1,4 @@ -/* $OpenBSD: session.c,v 1.206 2006/07/06 16:03:53 stevesk Exp $ */ +/* $OpenBSD: session.c,v 1.207 2006/07/08 21:48:53 stevesk Exp $ */ /* * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland * All rights reserved @@ -39,6 +39,7 @@ #include <sys/wait.h> #include <sys/un.h> #include <sys/stat.h> +#include <sys/socket.h> #include <grp.h> #include <paths.h> |