summaryrefslogtreecommitdiff
path: root/ssh-pkcs11.c
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@dtucker.net>2019-07-23 22:25:44 +1000
committerDarren Tucker <dtucker@dtucker.net>2019-07-23 22:26:20 +1000
commit9634ffbf29b3c2493e69d10b37077b09a8cbf5ff (patch)
tree74f29fc321cd0dc93abf18626e083d53e1a0fd01 /ssh-pkcs11.c
parent2ea60312e1c08dea88982fec68244f89a40912ff (diff)
downloadopenssh-git-9634ffbf29b3c2493e69d10b37077b09a8cbf5ff.tar.gz
Add headers to prevent warnings w/out OpenSSL.
Diffstat (limited to 'ssh-pkcs11.c')
-rw-r--r--ssh-pkcs11.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/ssh-pkcs11.c b/ssh-pkcs11.c
index d9413bc4..45ab80d0 100644
--- a/ssh-pkcs11.c
+++ b/ssh-pkcs11.c
@@ -1789,6 +1789,14 @@ out:
}
#endif /* WITH_PKCS11_KEYGEN */
#else /* ENABLE_PKCS11 */
+
+#include <sys/types.h>
+#include <stdarg.h>
+#include <stdio.h>
+
+#include "log.h"
+#include "sshkey.h"
+
int
pkcs11_init(int interactive)
{