Skip to content

Commit 5c8e05a

Browse files
committed
bump revno up
1 parent d791ce3 commit 5c8e05a

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

mongoose.c

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3452,8 +3452,9 @@ static void mqtt_cb(struct mg_connection *c, int ev, void *ev_data,
34523452
if (c->is_mqtt5) remaining_len += 2; // 3.4.2
34533453

34543454
mg_mqtt_send_header(
3455-
c, mm.qos == 2 ? MQTT_CMD_PUBREC : MQTT_CMD_PUBACK, 0,
3456-
remaining_len);
3455+
c,
3456+
(uint8_t) (mm.qos == 2 ? MQTT_CMD_PUBREC : MQTT_CMD_PUBACK),
3457+
0, remaining_len);
34573458
mg_send(c, &id, sizeof(id));
34583459

34593460
if (c->is_mqtt5) {

mongoose.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
#ifndef MONGOOSE_H
2121
#define MONGOOSE_H
2222

23-
#define MG_VERSION "7.10"
23+
#define MG_VERSION "7.11"
2424

2525
#ifdef __cplusplus
2626
extern "C" {

src/version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
#define MG_VERSION "7.10"
1+
#define MG_VERSION "7.11"

0 commit comments

Comments
 (0)