- Fix ssl.h include brackets, instead of quotes.

This commit is contained in:
W.C.A. Wijngaards 2023-03-16 15:40:43 +01:00
parent 4f25d75d4b
commit a97d7175a6
4 changed files with 6 additions and 3 deletions

View File

@ -47,7 +47,7 @@
#define SHA512_Update SHA512Update #define SHA512_Update SHA512Update
#define SHA512_Final SHA512Final #define SHA512_Final SHA512Final
#else #else
#include "openssl/sha.h" #include <openssl/sha.h>
#endif #endif
#include <sys/vfs.h> #include <sys/vfs.h>

View File

@ -46,7 +46,7 @@
#ifndef DAEMON_REMOTE_H #ifndef DAEMON_REMOTE_H
#define DAEMON_REMOTE_H #define DAEMON_REMOTE_H
#ifdef HAVE_OPENSSL_SSL_H #ifdef HAVE_OPENSSL_SSL_H
#include "openssl/ssl.h" #include <openssl/ssl.h>
#endif #endif
struct config_file; struct config_file;
struct listen_list; struct listen_list;

View File

@ -1,3 +1,6 @@
16 March 2023: Wouter
- Fix ssl.h include brackets, instead of quotes.
14 March 2023: Wouter 14 March 2023: Wouter
- Fix unbound-dnstap-socket test program to reply the finish frame - Fix unbound-dnstap-socket test program to reply the finish frame
over a TLS connection correctly. over a TLS connection correctly.

View File

@ -43,7 +43,7 @@
*/ */
#include "config.h" #include "config.h"
#ifdef HAVE_OPENSSL_SSL_H #ifdef HAVE_OPENSSL_SSL_H
#include "openssl/ssl.h" #include <openssl/ssl.h>
#define NSEC3_SHA_LEN SHA_DIGEST_LENGTH #define NSEC3_SHA_LEN SHA_DIGEST_LENGTH
#else #else
#define NSEC3_SHA_LEN 20 #define NSEC3_SHA_LEN 20