diff options
author | Damien Miller <djm@mindrot.org> | 2019-09-07 19:25:00 +1000 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2019-09-08 10:37:17 +1000 |
commit | f61f29afda6c71eda26effa54d3c2e5306fd0833 (patch) | |
tree | 065e02eead3f8085a6c69a8976a8fa11e313ac6c /regress/unittests/sshbuf/test_sshbuf_getput_crypto.c | |
parent | 105e1c9218940eb53473f55a9177652d889ddbad (diff) |
make unittests pass for no-openssl case
Diffstat (limited to 'regress/unittests/sshbuf/test_sshbuf_getput_crypto.c')
-rw-r--r-- | regress/unittests/sshbuf/test_sshbuf_getput_crypto.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/regress/unittests/sshbuf/test_sshbuf_getput_crypto.c b/regress/unittests/sshbuf/test_sshbuf_getput_crypto.c index 5d39e63e1..492b3bdf0 100644 --- a/regress/unittests/sshbuf/test_sshbuf_getput_crypto.c +++ b/regress/unittests/sshbuf/test_sshbuf_getput_crypto.c | |||
@@ -7,6 +7,8 @@ | |||
7 | 7 | ||
8 | #include "includes.h" | 8 | #include "includes.h" |
9 | 9 | ||
10 | #ifdef WITH_OPENSSL | ||
11 | |||
10 | #include <sys/types.h> | 12 | #include <sys/types.h> |
11 | #include <sys/param.h> | 13 | #include <sys/param.h> |
12 | #include <stdio.h> | 14 | #include <stdio.h> |
@@ -276,3 +278,4 @@ sshbuf_getput_crypto_tests(void) | |||
276 | #endif | 278 | #endif |
277 | } | 279 | } |
278 | 280 | ||
281 | #endif /* WITH_OPENSSL */ | ||