diff options
Diffstat (limited to 'usr.bin/ssh/msg.c')
-rw-r--r-- | usr.bin/ssh/msg.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/usr.bin/ssh/msg.c b/usr.bin/ssh/msg.c index 32247266848..8b82b2ecf97 100644 --- a/usr.bin/ssh/msg.c +++ b/usr.bin/ssh/msg.c @@ -1,4 +1,4 @@ -/* $OpenBSD: msg.c,v 1.14 2006/07/22 20:48:23 stevesk Exp $ */ +/* $OpenBSD: msg.c,v 1.15 2006/08/03 03:34:42 deraadt Exp $ */ /* * Copyright (c) 2002 Markus Friedl. All rights reserved. * @@ -22,13 +22,15 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -#include "includes.h" #include <sys/types.h> +#include <sys/uio.h> #include <errno.h> +#include <stdio.h> #include <string.h> #include <unistd.h> +#include <stdarg.h> #include "buffer.h" #include "log.h" |