From Bill Meier:

Ensure "relevant function" logic works for loopback packets containing multiple forwarding addresses.


svn path=/trunk/; revision=17689
This commit is contained in:
Jaap Keuter 2006-03-21 06:54:12 +00:00
parent a9b74a73ce
commit f4248f455d
1 changed files with 1 additions and 1 deletions

View File

@ -76,7 +76,7 @@ dissect_loop(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
proto_tree_add_item(loop_tree, hf_loop_skipcount, tvb, offset, 2, TRUE);
}
skip_offset = 2 + tvb_get_ntohs(tvb, offset);
skip_offset = 2 + tvb_get_letohs(tvb, offset);
offset += 2;
do {