diff options
author | Damien Miller <djm@mindrot.org> | 2006-07-10 13:13:46 +0200 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2006-07-10 13:13:46 +0200 |
commit | 57cf638577052cfec0d4bce197c5597588a8b813 (patch) | |
tree | ef59d27eae64048fd8a16d53f6805fbd6525e078 /auth2-none.c | |
parent | - stevesk@cvs.openbsd.org 2006/07/08 23:30:06 (diff) | |
download | openssh-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 'auth2-none.c')
-rw-r--r-- | auth2-none.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/auth2-none.c b/auth2-none.c index 3fdf09a3a..d6738175f 100644 --- a/auth2-none.c +++ b/auth2-none.c @@ -1,4 +1,4 @@ -/* $OpenBSD: auth2-none.c,v 1.10 2006/03/25 13:17:01 djm Exp $ */ +/* $OpenBSD: auth2-none.c,v 1.11 2006/07/09 15:15:10 stevesk Exp $ */ /* * Copyright (c) 2000 Markus Friedl. All rights reserved. * @@ -28,6 +28,8 @@ #include <sys/types.h> #include <sys/stat.h> +#include <fcntl.h> + #include "auth.h" #include "xmalloc.h" #include "packet.h" |