diff options
author | 2006-07-08 21:47:12 +0000 | |
---|---|---|
committer | 2006-07-08 21:47:12 +0000 | |
commit | 3e070fac36aa8ea631ceedd0e261343d5d61afe0 (patch) | |
tree | 4eeca60f3d3a739918ff45af04f91eab63f6477b /usr.bin/ssh/ssh-agent.c | |
parent | Rename VTON() to VTOU() (diff) | |
download | wireguard-openbsd-3e070fac36aa8ea631ceedd0e261343d5d61afe0.tar.xz wireguard-openbsd-3e070fac36aa8ea631ceedd0e261343d5d61afe0.zip |
move #include <sys/socket.h> out of includes.h
Diffstat (limited to 'usr.bin/ssh/ssh-agent.c')
-rw-r--r-- | usr.bin/ssh/ssh-agent.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/ssh/ssh-agent.c b/usr.bin/ssh/ssh-agent.c index 35701aa9b66..b16d0ffd279 100644 --- a/usr.bin/ssh/ssh-agent.c +++ b/usr.bin/ssh/ssh-agent.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ssh-agent.c,v 1.140 2006/06/13 02:17:07 djm Exp $ */ +/* $OpenBSD: ssh-agent.c,v 1.141 2006/07/08 21:47:12 stevesk Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -39,6 +39,7 @@ #include <sys/queue.h> #include <sys/resource.h> #include <sys/types.h> +#include <sys/socket.h> #include <sys/un.h> #include <paths.h> |