summaryrefslogtreecommitdiffstats
path: root/ssh.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2006-07-10 13:13:46 +0200
committerDamien Miller <djm@mindrot.org>2006-07-10 13:13:46 +0200
commit57cf638577052cfec0d4bce197c5597588a8b813 (patch)
treeef59d27eae64048fd8a16d53f6805fbd6525e078 /ssh.c
parent - stevesk@cvs.openbsd.org 2006/07/08 23:30:06 (diff)
downloadopenssh-57cf638577052cfec0d4bce197c5597588a8b813.tar.xz
openssh-57cf638577052cfec0d4bce197c5597588a8b813.zip
- 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.c')
-rw-r--r--ssh.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/ssh.c b/ssh.c
index ee4f92f92..d5c067018 100644
--- a/ssh.c
+++ b/ssh.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ssh.c,v 1.280 2006/07/08 21:47:12 stevesk Exp $ */
+/* $OpenBSD: ssh.c,v 1.281 2006/07/09 15:15:11 stevesk Exp $ */
/*
* Author: Tatu Ylonen <ylo@cs.hut.fi>
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -52,6 +52,7 @@
#include <sys/un.h>
#include <ctype.h>
+#include <fcntl.h>
#ifdef HAVE_PATHS_H
#include <paths.h>
#endif