aboutsummaryrefslogtreecommitdiffstats
path: root/packet-ncp2222.inc
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2003-12-03 09:28:26 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2003-12-03 09:28:26 +0000
commit9ff0d6804d6b60a8c1b66649c45473074b1eadc3 (patch)
tree1d14652d65d1690cfc1980777b9bc90aac75b4c2 /packet-ncp2222.inc
parent4eebf4000393b53ab460b1c209993853f11d9bc9 (diff)
The "ptr_u" unions no longer have a "next" pointer - they now just have
one member - or have one that's not used, so get rid of those unions. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@9151 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'packet-ncp2222.inc')
-rw-r--r--packet-ncp2222.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/packet-ncp2222.inc b/packet-ncp2222.inc
index e05c841e36..bb5f88a430 100644
--- a/packet-ncp2222.inc
+++ b/packet-ncp2222.inc
@@ -11,7 +11,7 @@
* Portions Copyright (c) Gilbert Ramirez 2000-2002
* Portions Copyright (c) Novell, Inc. 2000-2003
*
- * $Id: packet-ncp2222.inc,v 1.67 2003/12/02 21:15:45 guy Exp $
+ * $Id: packet-ncp2222.inc,v 1.68 2003/12/03 09:28:17 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -928,7 +928,7 @@ get_item_string(proto_item *item)
char *
get_item_name(proto_item *item)
{
- return PITEM_FINFO(item)->ptr_u.hfinfo->name;
+ return PITEM_FINFO(item)->hfinfo->name;
}