Skip to content

Commit

Permalink
Merge pull request #4 from rrobgill/classlessrouting
Browse files Browse the repository at this point in the history
correct destination error in classless static routes
  • Loading branch information
bbonev committed Jun 2, 2023
2 parents 0d3a5fb + 227f33b commit 0ec7801
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dhcpdump.c
Expand Up @@ -258,7 +258,7 @@ static inline void printIPaddressCompactMaskAddress(uint8_t *data,int len) { //
i?"\n":"",
i?44:0,"",
j>4?data[i+1]:0,j>5?data[i+2]:0,j>6?data[i+3]:0,j>7?data[i+4]:0,data[i],
data[j-3],data[j-2],data[j-1],data[j]);
data[i+j-3],data[i+j-2],data[i+j-1],data[i+j]);
i+=j;
}
} // }}}
Expand Down

0 comments on commit 0ec7801

Please sign in to comment.