summaryrefslogtreecommitdiff
path: root/authfd.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2006-03-15 11:40:10 +1100
committerDamien Miller <djm@mindrot.org>2006-03-15 11:40:10 +1100
commit574c41fdb3ff4b8eb7f121b05a08f2415ec7efec (patch)
treeda6082bcb028dd2d9df5fd1123dd8c0658fd5f7a /authfd.c
parent5c853b531f3e2af1aa38d1a911529ecc9511c341 (diff)
- stevesk@cvs.openbsd.org 2006/02/20 16:36:15
[authfd.c channels.c includes.h session.c ssh-agent.c ssh.c] move #include <sys/un.h> out of includes.h; ok djm@
Diffstat (limited to 'authfd.c')
-rw-r--r--authfd.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/authfd.c b/authfd.c
index 8976616b4..06e6d4a4c 100644
--- a/authfd.c
+++ b/authfd.c
@@ -35,7 +35,10 @@
35 */ 35 */
36 36
37#include "includes.h" 37#include "includes.h"
38RCSID("$OpenBSD: authfd.c,v 1.66 2005/06/17 02:44:32 djm Exp $"); 38RCSID("$OpenBSD: authfd.c,v 1.67 2006/02/20 16:36:14 stevesk Exp $");
39
40#include <sys/types.h>
41#include <sys/un.h>
39 42
40#include <openssl/evp.h> 43#include <openssl/evp.h>
41 44