diff options
author | 2006-07-26 02:35:16 +0000 | |
---|---|---|
committer | 2006-07-26 02:35:16 +0000 | |
commit | 2f43a2f848f436435722d0e9d58b630a06118ca7 (patch) | |
tree | 8cc5ed1ea362b21dd4b1f44e6cf689bc8d91550c /usr.bin/ssh/ssh-agent.c | |
parent | Crank buffer sizes to the 1024 limit imposed by ttymalloc() (diff) | |
download | wireguard-openbsd-2f43a2f848f436435722d0e9d58b630a06118ca7.tar.xz wireguard-openbsd-2f43a2f848f436435722d0e9d58b630a06118ca7.zip |
move #include <sys/param.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 e7496550c08..ca795f6bdee 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.147 2006/07/25 02:59:21 stevesk Exp $ */ +/* $OpenBSD: ssh-agent.c,v 1.148 2006/07/26 02:35:17 stevesk Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -42,6 +42,7 @@ #include <sys/socket.h> #include <sys/un.h> #include <sys/time.h> +#include <sys/param.h> #include <openssl/evp.h> #include <openssl/md5.h> |