summaryrefslogtreecommitdiff
path: root/auth-rhosts.c
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2008-06-14 09:01:24 +1000
committerDarren Tucker <dtucker@zip.com.au>2008-06-14 09:01:24 +1000
commitd9526a5e96e4515afec28df42b13d08bd02f754a (patch)
tree2077d0054b8891a6faf68e46427b345ed904be54 /auth-rhosts.c
parentf2c16d30b456c3b149999e91d16bf28f82197d3f (diff)
- dtucker@cvs.openbsd.org 2008/06/13 14:18:51
[auth2-pubkey.c auth-rhosts.c] Include unistd.h for close(), prevents warnings in -portable
Diffstat (limited to 'auth-rhosts.c')
-rw-r--r--auth-rhosts.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/auth-rhosts.c b/auth-rhosts.c
index bbddfb6df..5c1296701 100644
--- a/auth-rhosts.c
+++ b/auth-rhosts.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: auth-rhosts.c,v 1.42 2008/06/13 04:40:22 djm Exp $ */ 1/* $OpenBSD: auth-rhosts.c,v 1.43 2008/06/13 14:18:51 dtucker 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
@@ -27,6 +27,7 @@
27#include <string.h> 27#include <string.h>
28#include <stdarg.h> 28#include <stdarg.h>
29#include <fcntl.h> 29#include <fcntl.h>
30#include <unistd.h>
30 31
31#include "packet.h" 32#include "packet.h"
32#include "buffer.h" 33#include "buffer.h"