Skip to content

Commit a83a1ca

Browse files
committed
Issue 550: Remove extra trailing nul for Send Unproto Via.
1 parent b26c5a4 commit a83a1ca

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/server.c

+5-1
Original file line numberDiff line numberDiff line change
@@ -1769,7 +1769,11 @@ static THREAD_F cmd_listen_thread (void *arg)
17691769
break;
17701770
}
17711771

1772-
ax25_set_info (pp, (unsigned char*)p, data_len - ndigi * 10);
1772+
// 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+
17731777
// Issue 527: NET/ROM routing broadcasts use PID 0xCF which was not preserved here.
17741778
ax25_set_pid (pp, pid);
17751779

0 commit comments

Comments
 (0)