summaryrefslogtreecommitdiff
path: root/ssh-agent.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 /ssh-agent.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 'ssh-agent.c')
-rw-r--r--ssh-agent.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/ssh-agent.c b/ssh-agent.c
index 87e94b0ea..57c7380f3 100644
--- a/ssh-agent.c
+++ b/ssh-agent.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: ssh-agent.c,v 1.141 2006/07/08 21:47:12 stevesk Exp $ */ 1/* $OpenBSD: ssh-agent.c,v 1.142 2006/07/09 15:15:11 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,7 @@
45#include "openbsd-compat/sys-queue.h" 45#include "openbsd-compat/sys-queue.h"
46#include <sys/resource.h> 46#include <sys/resource.h>
47 47
48#include <fcntl.h>
48#ifdef HAVE_PATHS_H 49#ifdef HAVE_PATHS_H
49# include <paths.h> 50# include <paths.h>
50#endif 51#endif