summaryrefslogtreecommitdiffstats
path: root/streaming
diff options
context:
space:
mode:
authorthiagoftsm <49162938+thiagoftsm@users.noreply.github.com>2019-06-03 19:25:09 +0000
committerPaul Emm. Katsoulakis <34388743+paulkatsoulakis@users.noreply.github.com>2019-06-03 22:25:09 +0300
commit5182677831814289d27afb0b48043ab63f2b6d1b (patch)
treef661f5f809870fe07692ca3569d3e2d5e8b7264a /streaming
parent2a48134cda5975f790d31cea29dae732bef3d7df (diff)
netdata/daemon: SSL fix - broken compilation case when ssl library not present! (#6201)
* SSL_fix fix the compilation case the library is not present!
Diffstat (limited to 'streaming')
-rw-r--r--streaming/rrdpush.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/streaming/rrdpush.c b/streaming/rrdpush.c
index 8c23750812..257e856261 100644
--- a/streaming/rrdpush.c
+++ b/streaming/rrdpush.c
@@ -1210,7 +1210,9 @@ static void *rrdpush_receiver_thread(void *ptr) {
, rpt->update_every
, rpt->client_ip
, rpt->client_port
+#ifdef ENABLE_HTTPS
, &rpt->ssl
+#endif
);
netdata_thread_cleanup_pop(1);