aboutsummaryrefslogtreecommitdiffstats
path: root/packet-afs.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-afs.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-afs.c')
-rw-r--r--packet-afs.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/packet-afs.c b/packet-afs.c
index 83868488ef..7e7709dd64 100644
--- a/packet-afs.c
+++ b/packet-afs.c
@@ -8,7 +8,7 @@
* Portions based on information/specs retrieved from the OpenAFS sources at
* www.openafs.org, Copyright IBM.
*
- * $Id: packet-afs.c,v 1.34 2001/09/03 10:33:05 guy Exp $
+ * $Id: packet-afs.c,v 1.35 2001/11/03 00:58:49 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -184,7 +184,7 @@ afs_init_protocol(void)
static void
dissect_afs(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
{
- struct rxinfo *rxinfo = pinfo->private;
+ struct rxinfo *rxinfo = pinfo->private_data;
int reply = 0;
conversation_t *conversation;
struct afs_request_key request_key, *new_request_key;