aboutsummaryrefslogtreecommitdiffstats
path: root/packet.c
diff options
context:
space:
mode:
authorGilbert Ramirez <gram@alumni.rice.edu>2000-05-25 14:55:22 +0000
committerGilbert Ramirez <gram@alumni.rice.edu>2000-05-25 14:55:22 +0000
commit1c2ca9c39c7caefb91a6f4790ea8b2e228d61390 (patch)
tree854e59abfbdcacfe0fb3eca1f234463271f9024e /packet.c
parent8af330852d2b00e0b65470dacea4eba20c5c1418 (diff)
downloadwireshark-1c2ca9c39c7caefb91a6f4790ea8b2e228d61390.tar.gz
wireshark-1c2ca9c39c7caefb91a6f4790ea8b2e228d61390.tar.bz2
wireshark-1c2ca9c39c7caefb91a6f4790ea8b2e228d61390.zip
Convert dissect_clip() to use tvbuffs. Very trivial change.
svn path=/trunk/; revision=2003
Diffstat (limited to 'packet.c')
-rw-r--r--packet.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/packet.c b/packet.c
index 8ba42cd9ec..8c760519f8 100644
--- a/packet.c
+++ b/packet.c
@@ -1,7 +1,7 @@
/* packet.c
* Routines for packet disassembly
*
- * $Id: packet.c,v 1.90 2000/05/25 08:45:54 gram Exp $
+ * $Id: packet.c,v 1.91 2000/05/25 14:55:22 gram Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -1200,7 +1200,7 @@ dissect_packet(union wtap_pseudo_header *pseudo_header, const u_char *pd,
dissect_raw(tvb, &pi, tree);
break;
case WTAP_ENCAP_LINUX_ATM_CLIP :
- dissect_clip(pd, fd, tree);
+ dissect_clip(tvb, &pi, tree);
break;
case WTAP_ENCAP_ATM_SNIFFER :
dissect_atm(pseudo_header, pd, fd, tree);