diff options
author | Damien Miller <djm@mindrot.org> | 2006-07-10 12:35:38 +0200 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2006-07-10 12:35:38 +0200 |
commit | 8ec8c3e98a07be51e0a136170f02b7ebab0f28ca (patch) | |
tree | 48c9fe4cc4e71a4af527076ef5a480565460e6fd /misc.c | |
parent | - stevesk@cvs.openbsd.org 2006/07/03 17:59:32 (diff) | |
download | openssh-8ec8c3e98a07be51e0a136170f02b7ebab0f28ca.tar.xz openssh-8ec8c3e98a07be51e0a136170f02b7ebab0f28ca.zip |
- stevesk@cvs.openbsd.org 2006/07/05 02:42:09
[canohost.c hostfile.c includes.h misc.c packet.c readconf.c]
[serverloop.c sshconnect.c uuencode.c]
move #include <netinet/in.h> out of includes.h; ok deraadt@
(also ssh-rand-helper.c logintest.c loginrec.c)
Diffstat (limited to 'misc.c')
-rw-r--r-- | misc.c | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -1,4 +1,4 @@ -/* $OpenBSD: misc.c,v 1.52 2006/03/30 09:58:15 djm Exp $ */ +/* $OpenBSD: misc.c,v 1.53 2006/07/05 02:42:09 stevesk Exp $ */ /* * Copyright (c) 2000 Markus Friedl. All rights reserved. * Copyright (c) 2005,2006 Damien Miller. All rights reserved. @@ -27,7 +27,11 @@ #include "includes.h" #include <sys/ioctl.h> +#include <sys/socket.h> + +#include <netinet/in.h> #include <netinet/tcp.h> + #ifdef HAVE_PATHS_H # include <paths.h> #endif |