summaryrefslogtreecommitdiff
path: root/authfile.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2006-07-10 21:13:46 +1000
committerDamien Miller <djm@mindrot.org>2006-07-10 21:13:46 +1000
commit57cf638577052cfec0d4bce197c5597588a8b813 (patch)
treeef59d27eae64048fd8a16d53f6805fbd6525e078 /authfile.c
parent194a1cb0189e41db76feb9363a89fe716f7cad97 (diff)
- stevesk@cvs.openbsd.org 2006/07/09 15:15:11
[auth2-none.c authfd.c authfile.c includes.h misc.c monitor.c] [readpass.c scp.c serverloop.c sftp-client.c sftp-server.c] [ssh-add.c ssh-agent.c ssh-keygen.c ssh-keysign.c ssh.c sshd.c] [sshlogin.c sshpty.c] move #include <fcntl.h> out of includes.h
Diffstat (limited to 'authfile.c')
-rw-r--r--authfile.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/authfile.c b/authfile.c
index b1a28528f..e928b0b0e 100644
--- a/authfile.c
+++ b/authfile.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: authfile.c,v 1.67 2006/04/25 08:02:27 dtucker Exp $ */ 1/* $OpenBSD: authfile.c,v 1.68 2006/07/09 15:15:10 stevesk Exp $ */
2/* 2/*
3 * Author: Tatu Ylonen <ylo@cs.hut.fi> 3 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland 4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -45,6 +45,8 @@
45#include <openssl/evp.h> 45#include <openssl/evp.h>
46#include <openssl/pem.h> 46#include <openssl/pem.h>
47 47
48#include <fcntl.h>
49
48#include "cipher.h" 50#include "cipher.h"
49#include "xmalloc.h" 51#include "xmalloc.h"
50#include "buffer.h" 52#include "buffer.h"