diff options
author | Darren Tucker <dtucker@cvs.openbsd.org> | 2006-08-05 08:00:34 +0000 |
---|---|---|
committer | Darren Tucker <dtucker@cvs.openbsd.org> | 2006-08-05 08:00:34 +0000 |
commit | f87a6a7d2bc1f3b0940cbf9afa4debaf17a382d4 (patch) | |
tree | 4983d2a89a1e83fe2323e8170742581c5c5d3c56 /usr.bin/ssh | |
parent | 5e9c0554572bb032977264beb81bc6b0b7406e0b (diff) |
Add headers required to build with -DSKEY. ok djm@
Diffstat (limited to 'usr.bin/ssh')
-rw-r--r-- | usr.bin/ssh/auth-skey.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/usr.bin/ssh/auth-skey.c b/usr.bin/ssh/auth-skey.c index 5588ae89f43..2e8e4bb4915 100644 --- a/usr.bin/ssh/auth-skey.c +++ b/usr.bin/ssh/auth-skey.c @@ -1,4 +1,4 @@ -/* $OpenBSD: auth-skey.c,v 1.24 2006/08/03 03:34:41 deraadt Exp $ */ +/* $OpenBSD: auth-skey.c,v 1.25 2006/08/05 08:00:33 dtucker Exp $ */ /* * Copyright (c) 2001 Markus Friedl. All rights reserved. * @@ -27,9 +27,14 @@ #include <sys/types.h> +#include <pwd.h> +#include <stdio.h> + #include <skey.h> #include "xmalloc.h" +#include "key.h" +#include "hostfile.h" #include "auth.h" #include "monitor_wrap.h" |