diff options
author | Francois-Xavier Le Bail <devel.fx.lebail@orange.fr> | 2018-01-08 18:40:03 +0100 |
---|---|---|
committer | Francois-Xavier Le Bail <devel.fx.lebail@orange.fr> | 2018-01-08 18:40:34 +0100 |
commit | 83046fe18342b3874e5e66db69af15b437c7a879 (patch) | |
tree | 3494f7ce68c4c1235f9435099fe045b604c2f71b /print-sunrpc.c | |
parent | efe79869834e0fd2461ccab6350165c7a906d7c4 (diff) | |
download | tcpdump-83046fe18342b3874e5e66db69af15b437c7a879.tar.gz |
Remove unneeded '&' when getting a pointer to an nd_uintN_t type
Diffstat (limited to 'print-sunrpc.c')
-rw-r--r-- | print-sunrpc.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/print-sunrpc.c b/print-sunrpc.c index 5aeab50a..cc1febb4 100644 --- a/print-sunrpc.c +++ b/print-sunrpc.c @@ -178,11 +178,11 @@ sunrpc_print(netdissect_options *ndo, const u_char *bp, if (!ndo->ndo_nflag) { snprintf(srcid, sizeof(srcid), "0x%x", - EXTRACT_BE_U_4(&rp->rm_xid)); + EXTRACT_BE_U_4(rp->rm_xid)); strlcpy(dstid, "sunrpc", sizeof(dstid)); } else { snprintf(srcid, sizeof(srcid), "0x%x", - EXTRACT_BE_U_4(&rp->rm_xid)); + EXTRACT_BE_U_4(rp->rm_xid)); snprintf(dstid, sizeof(dstid), "0x%x", SUNRPC_PMAPPORT); } @@ -205,23 +205,23 @@ sunrpc_print(netdissect_options *ndo, const u_char *bp, } ND_PRINT(" %s", tok2str(proc2str, " proc #%u", - EXTRACT_BE_U_4(&rp->rm_call.cb_proc))); - x = EXTRACT_BE_U_4(&rp->rm_call.cb_rpcvers); + EXTRACT_BE_U_4(rp->rm_call.cb_proc))); + x = EXTRACT_BE_U_4(rp->rm_call.cb_rpcvers); if (x != 2) ND_PRINT(" [rpcver %u]", x); - switch (EXTRACT_BE_U_4(&rp->rm_call.cb_proc)) { + switch (EXTRACT_BE_U_4(rp->rm_call.cb_proc)) { case SUNRPC_PMAPPROC_SET: case SUNRPC_PMAPPROC_UNSET: case SUNRPC_PMAPPROC_GETPORT: case SUNRPC_PMAPPROC_CALLIT: - x = EXTRACT_BE_U_4(&rp->rm_call.cb_prog); + x = EXTRACT_BE_U_4(rp->rm_call.cb_prog); if (!ndo->ndo_nflag) ND_PRINT(" %s", progstr(x)); else ND_PRINT(" %u", x); - ND_PRINT(".%u", EXTRACT_BE_U_4(&rp->rm_call.cb_vers)); + ND_PRINT(".%u", EXTRACT_BE_U_4(rp->rm_call.cb_vers)); break; } } |