sbattach: fix missing openssl/evp.h header
sbattach.c was generating a warning on compile: ../sbattach.c: In function ‘main’: ../sbattach.c:247:2: warning: implicit declaration of function ‘OpenSSL_add_all_digests’ [-Wimplicit-function-declaration] OpenSSL_add_all_digests is defined in evp.h, so add the #include. Signed-off-by: Jeremy Kerr <jeremy.kerr@canonical.com>
This commit is contained in:
parent
953b00481f
commit
ca05adbc77
1 changed files with 1 additions and 0 deletions
|
@ -45,6 +45,7 @@
|
|||
#include <getopt.h>
|
||||
|
||||
#include <openssl/pkcs7.h>
|
||||
#include <openssl/evp.h>
|
||||
#include <openssl/err.h>
|
||||
|
||||
#include <ccan/talloc/talloc.h>
|
||||
|
|
Loading…
Reference in a new issue