diff options
author | Guy Harris <guy@alum.mit.edu> | 2001-11-03 00:58:52 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2001-11-03 00:58:52 +0000 |
commit | 0c13da5c70517cf81f9d30c10f6ef7e7a45ccb78 (patch) | |
tree | 3d9cbe45f362244be62e2a96e427cc01b003c344 /packet-smb-mailslot.c | |
parent | 6d24afcb1f64c301fe262d5c0fd68760c3f0cf4f (diff) | |
download | wireshark-0c13da5c70517cf81f9d30c10f6ef7e7a45ccb78.tar.gz wireshark-0c13da5c70517cf81f9d30c10f6ef7e7a45ccb78.tar.bz2 wireshark-0c13da5c70517cf81f9d30c10f6ef7e7a45ccb78.zip |
Rename the "private" member of the "packet_info" structure to
"private_data", to keep C++ compilers from getting heartburn.
svn path=/trunk/; revision=4130
Diffstat (limited to 'packet-smb-mailslot.c')
-rw-r--r-- | packet-smb-mailslot.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packet-smb-mailslot.c b/packet-smb-mailslot.c index f35044abec..06693ccff3 100644 --- a/packet-smb-mailslot.c +++ b/packet-smb-mailslot.c @@ -2,7 +2,7 @@ * Routines for SMB mailslot packet dissection * Copyright 2000, Jeffrey C. Foster <jfoste@woodward.com> * - * $Id: packet-smb-mailslot.c,v 1.18 2001/10/04 23:19:01 guy Exp $ + * $Id: packet-smb-mailslot.c,v 1.19 2001/11/03 00:58:49 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> @@ -56,7 +56,7 @@ gboolean dissect_mailslot_smb(tvbuff_t *setup_tvb, tvbuff_t *tvb, packet_info *pinfo, proto_tree *parent_tree) { - struct smb_info *smb_info = pinfo->private; + struct smb_info *smb_info = pinfo->private_data; proto_tree *tree = 0; proto_item *item; tvbuff_t *next_tvb = NULL; |