Skip to content
Snippets Groups Projects
Commit 6713d10c authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Fix incorrect 'socket' value for new (highwater) log message

parent 6d01d683
Branches
Tags
1 merge request!455Update branch with changes from master
...@@ -5924,7 +5924,7 @@ NO_SSH: ...@@ -5924,7 +5924,7 @@ NO_SSH:
client_highwater = client_count; client_highwater = client_count;
if(client_highwater > 1) if(client_highwater > 1)
lprintf(LOG_NOTICE, "%04d New active client highwater mark: %u" lprintf(LOG_NOTICE, "%04d New active client highwater mark: %u"
,socket, client_highwater); ,client_socket, client_highwater);
mqtt_pub_uintval(&mqtt, TOPIC_SERVER, "highwater", client_highwater); mqtt_pub_uintval(&mqtt, TOPIC_SERVER, "highwater", client_highwater);
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment