mirror of
https://github.com/the-tcpdump-group/tcpdump.git
synced 2024-11-24 02:23:27 +08:00
whiteboard: fixup a few reversed tests (GH #446)
This is a follow-up to commit 3a3ec26
.
This commit is contained in:
parent
7a2fd5007d
commit
3ed82f4ed0
@ -201,7 +201,7 @@ wb_id(netdissect_options *ndo,
|
|||||||
len -= sizeof(*io) * nid;
|
len -= sizeof(*io) * nid;
|
||||||
io = (struct id_off *)(id + 1);
|
io = (struct id_off *)(id + 1);
|
||||||
cp = (char *)(io + nid);
|
cp = (char *)(io + nid);
|
||||||
if (!ND_TTEST2(cp, len)) {
|
if (ND_TTEST2(cp, len)) {
|
||||||
ND_PRINT((ndo, "\""));
|
ND_PRINT((ndo, "\""));
|
||||||
fn_print(ndo, (u_char *)cp, (u_char *)cp + len);
|
fn_print(ndo, (u_char *)cp, (u_char *)cp + len);
|
||||||
ND_PRINT((ndo, "\""));
|
ND_PRINT((ndo, "\""));
|
||||||
@ -266,7 +266,7 @@ wb_prep(netdissect_options *ndo,
|
|||||||
}
|
}
|
||||||
n = EXTRACT_32BITS(&prep->pp_n);
|
n = EXTRACT_32BITS(&prep->pp_n);
|
||||||
ps = (const struct pgstate *)(prep + 1);
|
ps = (const struct pgstate *)(prep + 1);
|
||||||
while (--n >= 0 && !ND_TTEST(*ps)) {
|
while (--n >= 0 && ND_TTEST(*ps)) {
|
||||||
const struct id_off *io, *ie;
|
const struct id_off *io, *ie;
|
||||||
char c = '<';
|
char c = '<';
|
||||||
|
|
||||||
@ -275,7 +275,7 @@ wb_prep(netdissect_options *ndo,
|
|||||||
ipaddr_string(ndo, &ps->page.p_sid),
|
ipaddr_string(ndo, &ps->page.p_sid),
|
||||||
EXTRACT_32BITS(&ps->page.p_uid)));
|
EXTRACT_32BITS(&ps->page.p_uid)));
|
||||||
io = (struct id_off *)(ps + 1);
|
io = (struct id_off *)(ps + 1);
|
||||||
for (ie = io + ps->nid; io < ie && !ND_TTEST(*io); ++io) {
|
for (ie = io + ps->nid; io < ie && ND_TTEST(*io); ++io) {
|
||||||
ND_PRINT((ndo, "%c%s:%u", c, ipaddr_string(ndo, &io->id),
|
ND_PRINT((ndo, "%c%s:%u", c, ipaddr_string(ndo, &io->id),
|
||||||
EXTRACT_32BITS(&io->off)));
|
EXTRACT_32BITS(&io->off)));
|
||||||
c = ',';
|
c = ',';
|
||||||
|
Loading…
Reference in New Issue
Block a user