Skip to content
Snippets Groups Projects
Commit b10d15a1 authored by rswindell's avatar rswindell
Browse files

Fix bug parsing OrigNet value from type 2+ packet headers.

parent ca489d10
Branches
Tags
No related merge requests found
......@@ -90,6 +90,8 @@ int pktdump(FILE* fp, const char* fname)
&& pkthdr.fill.two_plus.cword&1) {
fprintf(stdout,"2+");
dest.point=pkthdr.fill.two_plus.destpoint;
if(orig.net==-1) /* see FSC-0048 for details */
orig.net=pkthdr.fill.two_plus.auxnet;
} else if(pkthdr.baud==2) { /* Type 2.2 Packet Header */
fprintf(stdout,"2.2");
dest.point=pkthdr.month;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment