Skip to content
Snippets Groups Projects
Commit 2367f7e5 authored by Sebastian Hahn's avatar Sebastian Hahn
Browse files

Make sure MAX_DNS_LABEL_SIZE is defined

MAX_DNS_LABEL_SIZE was only defined for old versions of openssl, which
broke the build. Spotted by xiando. Fixes bug 4413; not in any released
version.
parent 489db382
No related branches found
No related tags found
No related merge requests found
......@@ -69,6 +69,9 @@
#define DISABLE_ENGINES
#endif
/** Longest recognized */
#define MAX_DNS_LABEL_SIZE 63
#if OPENSSL_VERSION_NUMBER < 0x00908000l
/** @{ */
/** On OpenSSL versions before 0.9.8, there is no working SHA256
......@@ -82,9 +85,6 @@
#include "sha256.c"
#define SHA256_Final(a,b) sha256_done(b,a)
/** Longest recognized */
#define MAX_DNS_LABEL_SIZE 63
static unsigned char *
SHA256(const unsigned char *m, size_t len, unsigned char *d)
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment