diff options
author | Nathan Neulinger <nneul@umr.edu> | 1999-11-15 17:16:51 +0000 |
---|---|---|
committer | Nathan Neulinger <nneul@umr.edu> | 1999-11-15 17:16:51 +0000 |
commit | 498cde407af47fd8853a5be1027a1ad617e885af (patch) | |
tree | a641618b1235d3b0de9f7def50a26094b8f0ee03 /packet-mount.c | |
parent | bde3be6fc6cddf6750311d53435e8e6ba3f9f8e6 (diff) | |
download | wireshark-498cde407af47fd8853a5be1027a1ad617e885af.tar.gz wireshark-498cde407af47fd8853a5be1027a1ad617e885af.tar.bz2 wireshark-498cde407af47fd8853a5be1027a1ad617e885af.zip |
Got rid of dissect_rpc_string routine, renamed dissect_rpc_string_item to
dissect_rpc_string. Replaced only instance of this routine being called.
Added display filtering to rpc dissector. Replaced most instances of
proto_tree_add_text with proto_tree_add_item.
Added program version and procedure to the program tree in addition to it
being in the RPC tree.
svn path=/trunk/; revision=1037
Diffstat (limited to 'packet-mount.c')
-rw-r--r-- | packet-mount.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packet-mount.c b/packet-mount.c index 2ac5afd307..fe2763a135 100644 --- a/packet-mount.c +++ b/packet-mount.c @@ -1,7 +1,7 @@ /* packet-mount.c * Routines for mount dissection * - * $Id: packet-mount.c,v 1.2 1999/11/15 14:17:18 nneul Exp $ + * $Id: packet-mount.c,v 1.3 1999/11/15 17:16:51 nneul Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@unicom.net> @@ -47,7 +47,7 @@ int dissect_mount_dirpath_call(const u_char *pd, int offset, frame_data *fd, { if ( tree ) { - offset = dissect_rpc_string_item(pd,offset,fd,tree,hf_mount_path); + offset = dissect_rpc_string(pd,offset,fd,tree,hf_mount_path); } return offset; |