summaryrefslogtreecommitdiff
path: root/misc.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 /misc.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 'misc.c')
-rw-r--r--misc.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/misc.c b/misc.c
index b7316519d..2abb14051 100644
--- a/misc.c
+++ b/misc.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: misc.c,v 1.54 2006/07/06 16:03:53 stevesk Exp $ */ 1/* $OpenBSD: misc.c,v 1.55 2006/07/09 15:15:10 stevesk Exp $ */
2/* 2/*
3 * Copyright (c) 2000 Markus Friedl. All rights reserved. 3 * Copyright (c) 2000 Markus Friedl. All rights reserved.
4 * Copyright (c) 2005,2006 Damien Miller. All rights reserved. 4 * Copyright (c) 2005,2006 Damien Miller. All rights reserved.
@@ -33,6 +33,7 @@
33#include <netinet/in.h> 33#include <netinet/in.h>
34#include <netinet/tcp.h> 34#include <netinet/tcp.h>
35 35
36#include <fcntl.h>
36#ifdef HAVE_PATHS_H 37#ifdef HAVE_PATHS_H
37# include <paths.h> 38# include <paths.h>
38#include <pwd.h> 39#include <pwd.h>