summaryrefslogtreecommitdiffstats
path: root/usr.bin/ssh/ssh.c
diff options
context:
space:
mode:
authorstevesk <stevesk@openbsd.org>2006-07-11 20:27:56 +0000
committerstevesk <stevesk@openbsd.org>2006-07-11 20:27:56 +0000
commit96542d960dbb4350c3e4c235cd64c04e578d6891 (patch)
tree66dcb3b25fd92077da47fd35e7dd71b6ba631deb /usr.bin/ssh/ssh.c
parentcast asterisk field precision argument to int to remove warning; (diff)
downloadwireguard-openbsd-96542d960dbb4350c3e4c235cd64c04e578d6891.tar.xz
wireguard-openbsd-96542d960dbb4350c3e4c235cd64c04e578d6891.zip
need <errno.h> here also (it's also included in <openssl/err.h>)
Diffstat (limited to 'usr.bin/ssh/ssh.c')
-rw-r--r--usr.bin/ssh/ssh.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/ssh/ssh.c b/usr.bin/ssh/ssh.c
index 4b1c8b4ee2b..282a5f13a2a 100644
--- a/usr.bin/ssh/ssh.c
+++ b/usr.bin/ssh/ssh.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ssh.c,v 1.284 2006/07/11 20:16:43 stevesk Exp $ */
+/* $OpenBSD: ssh.c,v 1.285 2006/07/11 20:27:56 stevesk Exp $ */
/*
* Author: Tatu Ylonen <ylo@cs.hut.fi>
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -50,6 +50,7 @@
#include <sys/stat.h>
#include <ctype.h>
+#include <errno.h>
#include <fcntl.h>
#include <paths.h>
#include <pwd.h>