diff options
author | 2006-07-20 15:26:14 +0000 | |
---|---|---|
committer | 2006-07-20 15:26:14 +0000 | |
commit | 81984b4ec01733fab6c762a05752a443559b07a7 (patch) | |
tree | f2764774339e5b082b4efed4cc8cb73225839cda /usr.bin/ssh/auth1.c | |
parent | Chad Dougherty <crd@andrew.cmu.edu> teaches me how to spell 'supported' correctly (diff) | |
download | wireguard-openbsd-81984b4ec01733fab6c762a05752a443559b07a7.tar.xz wireguard-openbsd-81984b4ec01733fab6c762a05752a443559b07a7.zip |
missed some needed #include <unistd.h> when KERBEROS5=no; issue from
massimo@cedoc.mo.it
Diffstat (limited to 'usr.bin/ssh/auth1.c')
-rw-r--r-- | usr.bin/ssh/auth1.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/usr.bin/ssh/auth1.c b/usr.bin/ssh/auth1.c index d25d5b2894d..16638981fe7 100644 --- a/usr.bin/ssh/auth1.c +++ b/usr.bin/ssh/auth1.c @@ -1,4 +1,4 @@ -/* $OpenBSD: auth1.c,v 1.66 2006/03/25 13:17:01 djm Exp $ */ +/* $OpenBSD: auth1.c,v 1.67 2006/07/20 15:26:14 stevesk Exp $ */ /* * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland * All rights reserved @@ -12,6 +12,10 @@ #include "includes.h" +#include <sys/types.h> + +#include <unistd.h> + #include "xmalloc.h" #include "rsa.h" #include "ssh1.h" |