diff options
author | 2006-02-20 16:36:14 +0000 | |
---|---|---|
committer | 2006-02-20 16:36:14 +0000 | |
commit | 575d0831c0bfb103093b86793d2ac689ed58114e (patch) | |
tree | a358972a4735680f7ce72ec7735c87c6406c6954 /usr.bin/ssh/ssh-agent.c | |
parent | - more spacing (diff) | |
download | wireguard-openbsd-575d0831c0bfb103093b86793d2ac689ed58114e.tar.xz wireguard-openbsd-575d0831c0bfb103093b86793d2ac689ed58114e.zip |
move #include <sys/un.h> out of includes.h; ok djm@
Diffstat (limited to 'usr.bin/ssh/ssh-agent.c')
-rw-r--r-- | usr.bin/ssh/ssh-agent.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.bin/ssh/ssh-agent.c b/usr.bin/ssh/ssh-agent.c index 6220a027711..9812894b331 100644 --- a/usr.bin/ssh/ssh-agent.c +++ b/usr.bin/ssh/ssh-agent.c @@ -34,10 +34,12 @@ */ #include "includes.h" -RCSID("$OpenBSD: ssh-agent.c,v 1.127 2006/02/08 14:31:30 stevesk Exp $"); +RCSID("$OpenBSD: ssh-agent.c,v 1.128 2006/02/20 16:36:14 stevesk Exp $"); #include <sys/queue.h> #include <sys/resource.h> +#include <sys/types.h> +#include <sys/un.h> #include <paths.h> |