aboutsummaryrefslogtreecommitdiffstats
path: root/packet-nbns.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2001-11-03 00:58:52 +0000
committerGuy Harris <guy@alum.mit.edu>2001-11-03 00:58:52 +0000
commit0c13da5c70517cf81f9d30c10f6ef7e7a45ccb78 (patch)
tree3d9cbe45f362244be62e2a96e427cc01b003c344 /packet-nbns.c
parent6d24afcb1f64c301fe262d5c0fd68760c3f0cf4f (diff)
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-nbns.c')
-rw-r--r--packet-nbns.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/packet-nbns.c b/packet-nbns.c
index 10148eaf59..b47748d002 100644
--- a/packet-nbns.c
+++ b/packet-nbns.c
@@ -4,7 +4,7 @@
* Gilbert Ramirez <gram@xiexie.org>
* Much stuff added by Guy Harris <guy@alum.mit.edu>
*
- * $Id: packet-nbns.c,v 1.62 2001/10/12 01:41:03 guy Exp $
+ * $Id: packet-nbns.c,v 1.63 2001/11/03 00:58:49 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -1504,7 +1504,7 @@ dissect_nbss_packet(tvbuff_t *tvb, int offset, packet_info *pinfo,
static void
dissect_nbss(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
{
- struct tcpinfo *tcpinfo = pinfo->private;
+ struct tcpinfo *tcpinfo = pinfo->private_data;
int offset = 0;
int max_data;
guint8 msg_type;