Bug#74 Printing of the Read property acknowledgement when APDU len is > 255 bytes. Thank you unnakb! (#148)

Co-authored-by: Steve Karg <skarg@users.sourceforge.net>
This commit is contained in:
Steve Karg
2021-01-13 13:58:50 -06:00
committed by GitHub
parent 7cb63dcf06
commit 0a9fbaf438
+1 -1
View File
@@ -65,7 +65,7 @@ void rp_ack_print_data(BACNET_READ_PROPERTY_DATA *data)
/* value? need to loop until all of the len is gone... */
for (;;) {
len = bacapp_decode_application_data(
application_data, (uint8_t)application_data_len, &value);
application_data, (unsigned)application_data_len, &value);
if (first_value && (len < application_data_len)) {
first_value = false;
#if PRINT_ENABLED