Skip to content

Commit

Permalink
Merge pull request #370 from embhorn/rel_prep_v1.17.0
Browse files Browse the repository at this point in the history
Rel prep v1.17.0 fixes
  • Loading branch information
dgarske authored Nov 2, 2023
2 parents a45ddaf + 65f3241 commit 51b84ea
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
5 changes: 4 additions & 1 deletion ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
## Release Notes

### v1.16.0 (11/2/2023)
### v1.17.0 (11/2/2023)
Release 1.17.0 has been developed according to wolfSSL's development and QA process (see link below) and successfully passed the quality criteria.
https://www.wolfssl.com/about/wolfssl-software-development-process-quality-assurance

* Fix for declaration after executable block by @lealem47 in #341
* Add QNX IDE, Makefile, and remove source code exec bit by @JacobBarthelmeh
in #317
Expand Down
1 change: 0 additions & 1 deletion examples/pub-sub/mqtt-pub.c
Original file line number Diff line number Diff line change
Expand Up @@ -461,7 +461,6 @@ int pub_client(MQTTCtx *mqttCtx)
static BOOL CtrlHandler(DWORD fdwCtrlType)
{
if (fdwCtrlType == CTRL_C_EVENT) {
mStopRead = 1;
PRINTF("Received Ctrl+c");
return TRUE;
}
Expand Down
3 changes: 3 additions & 0 deletions scripts/firmware.test
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,9 @@ sleep 0.5
server_result=$?
[ $server_result -ne 0 ] && echo -e "\n\nMQTT Example fwpush failed!" && do_cleanup "-1"

# give some time for the client complete
sleep 0.5

if [ $ENABLE_MQTT_TLS -ne 1 ]; then
# Compare files
echo "Comparing files"
Expand Down
2 changes: 1 addition & 1 deletion src/mqtt_sn_packet.c
Original file line number Diff line number Diff line change
Expand Up @@ -1488,7 +1488,7 @@ int SN_Packet_Read(MqttClient *client, byte* rx_buf, int rx_buf_len,
return MqttPacket_HandleNetError(client,
MQTT_TRACE_ERROR(MQTT_CODE_ERROR_NETWORK));
}
rc += len;
len += rc;
}
else {
rc = MqttSocket_Peek(client, rx_buf, 4, timeout_ms);
Expand Down

0 comments on commit 51b84ea

Please sign in to comment.