aboutsummaryrefslogtreecommitdiffstats
path: root/packet-rlogin.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-rlogin.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-rlogin.c')
-rw-r--r--packet-rlogin.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/packet-rlogin.c b/packet-rlogin.c
index 503c189d86..c047504abe 100644
--- a/packet-rlogin.c
+++ b/packet-rlogin.c
@@ -2,7 +2,7 @@
* Routines for unix rlogin packet dissection
* Copyright 2000, Jeffrey C. Foster <jfoste@woodward.com>
*
- * $Id: packet-rlogin.c,v 1.21 2001/10/01 08:29:35 guy Exp $
+ * $Id: packet-rlogin.c,v 1.22 2001/11/03 00:58:49 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -341,7 +341,7 @@ static void rlogin_display( rlogin_hash_entry_t *hash_info, tvbuff_t *tvb,
static void
dissect_rlogin(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
{
- struct tcpinfo *tcpinfo = pinfo->private;
+ struct tcpinfo *tcpinfo = pinfo->private_data;
conversation_t *conversation;
rlogin_hash_entry_t *hash_info;
guint length;