summaryrefslogtreecommitdiff
path: root/ssh.c
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2006-07-12 22:24:22 +1000
committerDarren Tucker <dtucker@zip.com.au>2006-07-12 22:24:22 +1000
commitba724050263c0bca0a7dffa26462d046c4df7e01 (patch)
tree24ff53e2ae8b305cb13c2ec37da602938ba526d0 /ssh.c
parent57f4224677c5678d6256df865ea858de9ad915f3 (diff)
- stevesk@cvs.openbsd.org 2006/07/11 20:27:56
[authfile.c ssh.c] need <errno.h> here also (it's also included in <openssl/err.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 100c095dc..9961baf6e 100644
--- a/ssh.c
+++ b/ssh.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: ssh.c,v 1.284 2006/07/11 20:16:43 stevesk Exp $ */ 1/* $OpenBSD: ssh.c,v 1.285 2006/07/11 20:27:56 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
@@ -52,6 +52,7 @@
52#include <sys/un.h> 52#include <sys/un.h>
53 53
54#include <ctype.h> 54#include <ctype.h>
55#include <errno.h>
55#include <fcntl.h> 56#include <fcntl.h>
56#ifdef HAVE_PATHS_H 57#ifdef HAVE_PATHS_H
57#include <paths.h> 58#include <paths.h>