Skip to content

Commit

Permalink
win_sys_info: Fix compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
thiagoftsm committed Jun 23, 2024
1 parent 8ee9c78 commit 37cf389
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions src/daemon/commands.c
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 212,9 @@ static cmd_status_t cmd_reload_labels_execute(char *args, char **message)
(void)args;
netdata_log_info("COMMAND: reloading host labels.");
reload_host_labels();
#ifdef ENABLE_OPENSSL
aclk_queue_node_info(localhost, 1);
#endif

BUFFER *wb = buffer_create(10, NULL);
rrdlabels_log_to_buffer(localhost->rrdlabels, wb);
Expand Down
2 changes: 1 addition & 1 deletion src/libnetdata/socket/security.c
Original file line number Diff line number Diff line change
Expand Up @@ -480,7 480,7 @@ void netdata_ssl_initialize_openssl() {
#endif
}

#if defined(ENABLE_OPENSSL) && (OPENSSL_VERSION_NUMBER >= OPENSSL_VERSION_110)
#if (defined(ENABLE_OPENSSL) && (OPENSSL_VERSION_NUMBER >= OPENSSL_VERSION_110)) || defined(ENABLE_WOLFSSL)
/**
* TLS version
*
Expand Down

0 comments on commit 37cf389

Please sign in to comment.