diff options
author | Jakob Unterwurzacher | 2021-09-07 12:57:52 +0200 |
---|---|---|
committer | Jakob Unterwurzacher | 2021-09-07 18:15:04 +0200 |
commit | 738d5a2b3a001318064be649d683684630eff4c2 (patch) | |
tree | a4a3466bc440af105e7c521d01e4f9fc5c3747cb /internal/stupidgcm/openssl_aead.c | |
parent | d9510d0c0ba2ef31145499f4d49ab1d10c03de94 (diff) |
stupidgcm: fix build with CGO_ENABLED=1 without_openssl
We missed some "// +build" lines
Diffstat (limited to 'internal/stupidgcm/openssl_aead.c')
-rw-r--r-- | internal/stupidgcm/openssl_aead.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/internal/stupidgcm/openssl_aead.c b/internal/stupidgcm/openssl_aead.c index 77898d5..e02466f 100644 --- a/internal/stupidgcm/openssl_aead.c +++ b/internal/stupidgcm/openssl_aead.c @@ -1,3 +1,5 @@ +// +build !without_openssl + #include "openssl_aead.h" #include <openssl/evp.h> #include <stdio.h> |