diff options
author | 2001-12-27 18:26:13 +0000 | |
---|---|---|
committer | 2001-12-27 18:26:13 +0000 | |
commit | 7f8823252a35d7136bef9aaa7bda524d1383c527 (patch) | |
tree | 8978d577f251dd88e39bef77b4fbb0e2060df0f3 /usr.bin/ssh/authfile.c | |
parent | clarify -p; ok markus@ (diff) | |
download | wireguard-openbsd-7f8823252a35d7136bef9aaa7bda524d1383c527.tar.xz wireguard-openbsd-7f8823252a35d7136bef9aaa7bda524d1383c527.zip |
missing include
Diffstat (limited to 'usr.bin/ssh/authfile.c')
-rw-r--r-- | usr.bin/ssh/authfile.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/ssh/authfile.c b/usr.bin/ssh/authfile.c index fdaa2061fcd..91699e1203a 100644 --- a/usr.bin/ssh/authfile.c +++ b/usr.bin/ssh/authfile.c @@ -36,7 +36,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: authfile.c,v 1.43 2001/12/27 18:22:16 markus Exp $"); +RCSID("$OpenBSD: authfile.c,v 1.44 2001/12/27 18:26:13 markus Exp $"); #include <openssl/err.h> #include <openssl/evp.h> @@ -50,6 +50,7 @@ RCSID("$OpenBSD: authfile.c,v 1.43 2001/12/27 18:22:16 markus Exp $"); #include "ssh.h" #include "log.h" #include "authfile.h" +#include "rsa.h" /* Version identification string for SSH v1 identity files. */ static const char authfile_id_string[] = |