diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | auth-skey.c | 7 |
2 files changed, 10 insertions, 2 deletions
@@ -109,6 +109,9 @@ | |||
109 | - dtucker@cvs.openbsd.org 2006/08/05 07:52:52 | 109 | - dtucker@cvs.openbsd.org 2006/08/05 07:52:52 |
110 | [auth2-none.c sshd.c monitor_wrap.c] | 110 | [auth2-none.c sshd.c monitor_wrap.c] |
111 | Add headers required to build with KERBEROS5=no. ok djm@ | 111 | Add headers required to build with KERBEROS5=no. ok djm@ |
112 | - dtucker@cvs.openbsd.org 2006/08/05 08:00:33 | ||
113 | [auth-skey.c] | ||
114 | Add headers required to build with -DSKEY. ok djm@ | ||
112 | 115 | ||
113 | 20060804 | 116 | 20060804 |
114 | - (dtucker) [configure.ac] The "crippled AES" test does not work on recent | 117 | - (dtucker) [configure.ac] The "crippled AES" test does not work on recent |
@@ -5179,4 +5182,4 @@ | |||
5179 | - (djm) Trim deprecated options from INSTALL. Mention UsePAM | 5182 | - (djm) Trim deprecated options from INSTALL. Mention UsePAM |
5180 | - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu | 5183 | - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu |
5181 | 5184 | ||
5182 | $Id: ChangeLog,v 1.4466 2006/08/05 08:46:47 dtucker Exp $ | 5185 | $Id: ChangeLog,v 1.4467 2006/08/05 08:48:01 dtucker Exp $ |
diff --git a/auth-skey.c b/auth-skey.c index d49e59b75..78e216340 100644 --- a/auth-skey.c +++ b/auth-skey.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: auth-skey.c,v 1.24 2006/08/03 03:34:41 deraadt Exp $ */ | 1 | /* $OpenBSD: auth-skey.c,v 1.25 2006/08/05 08:00:33 dtucker Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 2001 Markus Friedl. All rights reserved. | 3 | * Copyright (c) 2001 Markus Friedl. All rights reserved. |
4 | * | 4 | * |
@@ -29,9 +29,14 @@ | |||
29 | 29 | ||
30 | #include <sys/types.h> | 30 | #include <sys/types.h> |
31 | 31 | ||
32 | #include <pwd.h> | ||
33 | #include <stdio.h> | ||
34 | |||
32 | #include <skey.h> | 35 | #include <skey.h> |
33 | 36 | ||
34 | #include "xmalloc.h" | 37 | #include "xmalloc.h" |
38 | #include "key.h" | ||
39 | #include "hostfile.h" | ||
35 | #include "auth.h" | 40 | #include "auth.h" |
36 | #include "monitor_wrap.h" | 41 | #include "monitor_wrap.h" |
37 | 42 | ||