diff options
author | 2006-07-09 15:15:10 +0000 | |
---|---|---|
committer | 2006-07-09 15:15:10 +0000 | |
commit | 089803ec38bc406458d7a22bd9f3c76b2270cf3f (patch) | |
tree | 8512763198790fa16a0a897b457b37dd451fcb57 /usr.bin/ssh/authfile.c | |
parent | Use sigaction() instead of signal() in the parent and use the (diff) | |
download | wireguard-openbsd-089803ec38bc406458d7a22bd9f3c76b2270cf3f.tar.xz wireguard-openbsd-089803ec38bc406458d7a22bd9f3c76b2270cf3f.zip |
move #include <fcntl.h> out of includes.h
Diffstat (limited to 'usr.bin/ssh/authfile.c')
-rw-r--r-- | usr.bin/ssh/authfile.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.bin/ssh/authfile.c b/usr.bin/ssh/authfile.c index 2bbb12934e0..84abca5000f 100644 --- a/usr.bin/ssh/authfile.c +++ b/usr.bin/ssh/authfile.c @@ -1,4 +1,4 @@ -/* $OpenBSD: authfile.c,v 1.67 2006/04/25 08:02:27 dtucker Exp $ */ +/* $OpenBSD: authfile.c,v 1.68 2006/07/09 15:15:10 stevesk Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -45,6 +45,8 @@ #include <openssl/evp.h> #include <openssl/pem.h> +#include <fcntl.h> + #include "cipher.h" #include "xmalloc.h" #include "buffer.h" |