mirror of
https://github.com/the-tcpdump-group/tcpdump.git
synced 2024-11-23 18:14:29 +08:00
NFS: prepend %x format with 0x (mitigates GH #35)
This commit is contained in:
parent
c661f8b23d
commit
330c159e07
@ -1113,7 +1113,7 @@ parsefattr(netdissect_options *ndo,
|
||||
EXTRACT_32BITS(&fap->fa3_ctime.nfsv3_nsec)));
|
||||
} else {
|
||||
ND_TCHECK(fap->fa2_ctime);
|
||||
ND_PRINT((ndo, " nlink %d rdev %x fsid %x nodeid %x a/m/ctime",
|
||||
ND_PRINT((ndo, " nlink %d rdev 0x%x fsid 0x%x nodeid 0x%x a/m/ctime",
|
||||
EXTRACT_32BITS(&fap->fa_nlink),
|
||||
EXTRACT_32BITS(&fap->fa2_rdev),
|
||||
EXTRACT_32BITS(&fap->fa2_fsid),
|
||||
@ -1253,7 +1253,7 @@ parserddires(netdissect_options *ndo,
|
||||
return (1);
|
||||
|
||||
ND_TCHECK(dp[2]);
|
||||
ND_PRINT((ndo, " offset %x size %d ",
|
||||
ND_PRINT((ndo, " offset 0x%x size %d ",
|
||||
EXTRACT_32BITS(&dp[0]), EXTRACT_32BITS(&dp[1])));
|
||||
if (dp[2] != 0)
|
||||
ND_PRINT((ndo, " eof"));
|
||||
|
Loading…
Reference in New Issue
Block a user