summaryrefslogtreecommitdiffstats
path: root/aclk
diff options
context:
space:
mode:
authorTimotej S <6674623+underhood@users.noreply.github.com>2023-01-23 19:59:29 +0700
committerGitHub <noreply@github.com>2023-01-23 19:59:29 +0700
commitc2c3876c519fbc22a60a5d8b753dc6d8e81e0fed (patch)
tree4225588f7474145ecc6968ea4a65ce6cae269d99 /aclk
parent5fabd2548ca342e9133add357bf160c67c6de079 (diff)
remove mqtt-c from websockets (#14181)
* remove MQTT-C (MQTT 3 implementation) from buildsystem
Diffstat (limited to 'aclk')
-rw-r--r--aclk/aclk.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/aclk/aclk.c b/aclk/aclk.c
index 1a6ebe5509..493c52bd24 100644
--- a/aclk/aclk.c
+++ b/aclk/aclk.c
@@ -701,7 +701,7 @@ void *aclk_main(void *ptr)
if (wait_till_agent_claim_ready())
goto exit;
- if (!(mqttwss_client = mqtt_wss_new("mqtt_wss", aclk_mqtt_wss_log_cb, msg_callback, puback_callback, 1))) {
+ if (!(mqttwss_client = mqtt_wss_new("mqtt_wss", aclk_mqtt_wss_log_cb, msg_callback, puback_callback))) {
error("Couldn't initialize MQTT_WSS network library");
goto exit;
}