X-Git-Url: https://git.tcpdump.org/tcpdump/blobdiff_plain/f3051bcbba8cf3e5e0f0fdae1bbbd9a2cfce3b6e..29d83dbb61be640899d969357f2a8e1c3e02c7ee:/print-tcp.c diff --git a/print-tcp.c b/print-tcp.c index 010dcf54..f8331d38 100644 --- a/print-tcp.c +++ b/print-tcp.c @@ -722,12 +722,12 @@ tcp_print(register const u_char *bp, register u_int length, if (TTEST(rp->rm_direction)) { direction = (enum sunrpc_msg_type)EXTRACT_32BITS(&rp->rm_direction); if (dport == NFS_PORT && direction == SUNRPC_CALL) { - (void)printf(" | "); + (void)printf(": NFS request xid %u ", EXTRACT_32BITS(&rp->rm_xid)); nfsreq_print_noaddr((u_char *)rp, fraglen, (u_char *)ip); return; } if (sport == NFS_PORT && direction == SUNRPC_REPLY) { - (void)printf(" | "); + (void)printf(": NFS reply xid %u ", EXTRACT_32BITS(&rp->rm_xid)); nfsreply_print_noaddr((u_char *)rp, fraglen, (u_char *)ip); return; }