summaryrefslogtreecommitdiff
path: root/ssh-ecdsa-sk.c
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@dtucker.net>2019-11-20 16:34:11 +1100
committerDarren Tucker <dtucker@dtucker.net>2019-11-20 16:34:11 +1100
commit2f95d43dc222ce194622b706682e8de07c9cfb42 (patch)
tree63f95012bd790e9e5102b1c7cc42d30832049d10 /ssh-ecdsa-sk.c
parenta70d92f236576c032a45c39e68ca0d71e958d19d (diff)
Include openssl compat header.
Fixes warning for ECDSA_SIG_set0 on OpenSSL versions prior to 1.1.
Diffstat (limited to 'ssh-ecdsa-sk.c')
-rw-r--r--ssh-ecdsa-sk.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/ssh-ecdsa-sk.c b/ssh-ecdsa-sk.c
index 7bdecd584..0d4d01cac 100644
--- a/ssh-ecdsa-sk.c
+++ b/ssh-ecdsa-sk.c
@@ -41,6 +41,8 @@
41#include <string.h> 41#include <string.h>
42#include <stdio.h> /* needed for DEBUG_SK only */ 42#include <stdio.h> /* needed for DEBUG_SK only */
43 43
44#include "openbsd-compat/openssl-compat.h"
45
44#include "sshbuf.h" 46#include "sshbuf.h"
45#include "ssherr.h" 47#include "ssherr.h"
46#include "digest.h" 48#include "digest.h"