From: Daniel Stenberg Date: Mon, 20 Apr 2020 21:27:04 +0000 (+0200) Subject: mqtt: make NOSTATE get within the debug name array X-Git-Tag: curl-7_70_0~27 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=10fece336f1ec9d96a7dc419b0f730da4cdaf29d;p=thirdparty%2Fcurl.git mqtt: make NOSTATE get within the debug name array --- diff --git a/lib/mqtt.c b/lib/mqtt.c index 4c664f7f6d..43a3b6e532 100644 --- a/lib/mqtt.c +++ b/lib/mqtt.c @@ -388,7 +388,9 @@ static const char *statenames[]={ "MQTT_SUBACK", "MQTT_SUBACK_COMING", "MQTT_PUBWAIT", - "MQTT_PUB_REMAIN" + "MQTT_PUB_REMAIN", + + "NOT A STATE" }; #endif diff --git a/lib/mqtt.h b/lib/mqtt.h index 41f7372ced..37463d58ad 100644 --- a/lib/mqtt.h +++ b/lib/mqtt.h @@ -35,7 +35,7 @@ enum mqttstate { MQTT_PUBWAIT, /* 5 - wait for publish */ MQTT_PUB_REMAIN, /* 6 - wait for the remainder of the publish */ - MQTT_NOSTATE = 99 /* never an actual state */ + MQTT_NOSTATE /* 7 - never used an actual state */ }; struct mqtt_conn {