We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b26c5a4 commit a83a1caCopy full SHA for a83a1ca
src/server.c
@@ -1769,7 +1769,11 @@ static THREAD_F cmd_listen_thread (void *arg)
1769
break;
1770
}
1771
1772
- ax25_set_info (pp, (unsigned char*)p, data_len - ndigi * 10);
+ // Issue 550: Info part was one byte too long resulting in an extra nul character.
1773
+ // Original calculation was data_len-ndigi*10 but we need to subtract one
1774
+ // for first byte which is number of digipeaters.
1775
+ ax25_set_info (pp, (unsigned char*)p, data_len - ndigi * 10 - 1);
1776
+
1777
// Issue 527: NET/ROM routing broadcasts use PID 0xCF which was not preserved here.
1778
ax25_set_pid (pp, pid);
1779
0 commit comments