diff options
author | Gilbert Ramirez <gram@alumni.rice.edu> | 1999-10-13 15:25:21 +0000 |
---|---|---|
committer | Gilbert Ramirez <gram@alumni.rice.edu> | 1999-10-13 15:25:21 +0000 |
commit | a5d909552867f2bb6acce811c7ffd6a771b3f2ce (patch) | |
tree | dcb5e5c24af6013e97eca6fd6fda1d45651de032 /packet-pim.c | |
parent | 93d58bf8242abd9026cecd2da313ac1de30d3fbe (diff) | |
download | wireshark-a5d909552867f2bb6acce811c7ffd6a771b3f2ce.tar.gz wireshark-a5d909552867f2bb6acce811c7ffd6a771b3f2ce.tar.bz2 wireshark-a5d909552867f2bb6acce811c7ffd6a771b3f2ce.zip |
Move tunnelled protocols up a few trees to co-exist with the
other protocols.
svn path=/trunk/; revision=823
Diffstat (limited to 'packet-pim.c')
-rw-r--r-- | packet-pim.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/packet-pim.c b/packet-pim.c index 468717982e..a965f535b2 100644 --- a/packet-pim.c +++ b/packet-pim.c @@ -2,7 +2,7 @@ * Routines for PIM disassembly * (c) Copyright Jun-ichiro itojun Hagino <itojun@itojun.org> * - * $Id: packet-pim.c,v 1.1 1999/10/13 06:47:45 guy Exp $ + * $Id: packet-pim.c,v 1.2 1999/10/13 15:25:21 gram Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@zing.org> @@ -263,10 +263,10 @@ dissect_pim(const u_char *pd, int offset, frame_data *fd, proto_tree *tree) { ip = &pd[flagoff + sizeof(guint32)]; switch((*ip & 0xf0) >> 4) { case 4: /* IPv4 */ - dissect_ip(pd, ip - pd, fd, pimopt_tree); + dissect_ip(pd, ip - pd, fd, tree); break; case 6: /* IPv6 */ - dissect_ipv6(pd, ip - pd, fd, pimopt_tree); + dissect_ipv6(pd, ip - pd, fd, tree); break; default: proto_tree_add_text(pimopt_tree, |