summaryrefslogtreecommitdiff
path: root/print-rsvp.c
diff options
context:
space:
mode:
Diffstat (limited to 'print-rsvp.c')
-rw-r--r--print-rsvp.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/print-rsvp.c b/print-rsvp.c
index 4ebf4f72..dfedaf50 100644
--- a/print-rsvp.c
+++ b/print-rsvp.c
@@ -593,7 +593,7 @@ rsvp_intserv_print(netdissect_options *ndo,
*/
if (parameter_length == 20) {
- ND_TCHECK2(*(tptr + 4), 20);
+ ND_TCHECK_LEN(tptr + 4, 20);
bw.i = EXTRACT_BE_U_4(tptr + 4);
ND_PRINT((ndo, "\n\t\tToken Bucket Rate: %.10g Mbps", bw.f / 125000));
bw.i = EXTRACT_BE_U_4(tptr + 8);
@@ -682,7 +682,7 @@ rsvp_obj_print(netdissect_options *ndo,
while(tlen>=sizeof(struct rsvp_object_header)) {
/* did we capture enough for fully decoding the object header ? */
- ND_TCHECK2(*tptr, sizeof(struct rsvp_object_header));
+ ND_TCHECK_LEN(tptr, sizeof(struct rsvp_object_header));
rsvp_obj_header = (const struct rsvp_object_header *)tptr;
rsvp_obj_len=EXTRACT_BE_U_2(rsvp_obj_header->length);
@@ -726,7 +726,7 @@ rsvp_obj_print(netdissect_options *ndo,
obj_tlen=rsvp_obj_len-sizeof(struct rsvp_object_header);
/* did we capture enough for fully decoding the object ? */
- if (!ND_TTEST2(*tptr, rsvp_obj_len))
+ if (!ND_TTEST_LEN(tptr, rsvp_obj_len))
return -1;
hexdump=FALSE;