From: Mike Brady Date: Sun, 27 Jan 2019 13:49:39 +0000 (+0000) Subject: use the correct label -- CONFIG_OPENSSL -- rather than the incorrect CONFIG_SSL for... X-Git-Tag: 3.3RC0~66^2~37^2~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1f67f66735c723d3f934fd0fc605bd2151743243;p=thirdparty%2Fshairport-sync.git use the correct label -- CONFIG_OPENSSL -- rather than the incorrect CONFIG_SSL for including code to create a filename using the OpenSSL library. --- diff --git a/metadata_hub.c b/metadata_hub.c index f399f200..f6c92ae8 100644 --- a/metadata_hub.c +++ b/metadata_hub.c @@ -219,7 +219,7 @@ char *metadata_write_image_file(const char *buf, int len) { uint8_t img_md5[16]; // uint8_t ap_md5[16]; -#ifdef CONFIG_SSL +#ifdef CONFIG_OPENSSL MD5_CTX ctx; MD5_Init(&ctx); MD5_Update(&ctx, buf, len);