From Nicolas Dichtel via Vincent Jardin:

Print a couple of missing fields.

svn path=/trunk/; revision=13379
This commit is contained in:
Gerald Combs 2005-02-10 16:24:12 +00:00
parent e9786bf1c3
commit 4acd84cd85
2 changed files with 4 additions and 0 deletions

View File

@ -2390,6 +2390,7 @@ Mutsuya Irie <irie [AT] sakura-catv.ne.jp>
Yoshihiro Oyama <y.oyama [AT] netagent.co.jp>
Chris Eagle <cseagle [AT] nps.edu>
Dominique Bastien <dbastien [AT] accedian.com>
Nicolas Dichtel <nicolas.dichtel [AT] 6wind.com>
Alain Magloire <alainm[AT]rcsm.ece.mcgill.ca> was kind enough to
give his permission to use his version of snprintf.c.

View File

@ -6,6 +6,7 @@
*
* $Id$
*
* Copyright 2004, Nicolas DICHTEL - 6WIND - <nicolas.dichtel@6wind.com>
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
* Copyright 1998 Gerald Combs
@ -1984,6 +1985,7 @@ dissect_dns_answer(tvbuff_t *tvb, int offset, int dns_data_offset,
if (rr_len < 2)
goto bad_rr;
tsig_siglen = tvb_get_ntohs(tvb, cur_offset);
proto_tree_add_text(rr_tree, tvb, cur_offset, 2, "Signature length: %u", tsig_siglen);
cur_offset += 2;
rr_len -= 2;
@ -2015,6 +2017,7 @@ dissect_dns_answer(tvbuff_t *tvb, int offset, int dns_data_offset,
if (rr_len < 2)
goto bad_rr;
tsig_otherlen = tvb_get_ntohs(tvb, cur_offset);
proto_tree_add_text(rr_tree, tvb, cur_offset, 2, "Other length: %u", tsig_otherlen);
cur_offset += 2;
rr_len -= 2;