aboutsummaryrefslogtreecommitdiffstats
path: root/print.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2003-12-03 09:28:26 +0000
committerGuy Harris <guy@alum.mit.edu>2003-12-03 09:28:26 +0000
commitdcd98ae8d334081d0b4e0f4c6902ac128dfeb000 (patch)
tree1d14652d65d1690cfc1980777b9bc90aac75b4c2 /print.c
parented2ae2d8d3eb9bdf13562825d28a7a60869b5c56 (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. svn path=/trunk/; revision=9151
Diffstat (limited to 'print.c')
-rw-r--r--print.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/print.c b/print.c
index b03adfd03c..553febb42b 100644
--- a/print.c
+++ b/print.c
@@ -1,7 +1,7 @@
/* print.c
* Routines for printing packet analysis trees.
*
- * $Id: print.c,v 1.61 2003/11/27 22:29:52 guy Exp $
+ * $Id: print.c,v 1.62 2003/12/03 09:28:19 guy Exp $
*
* Gilbert Ramirez <gram@alumni.rice.edu>
*
@@ -155,7 +155,7 @@ void proto_tree_print_node(GNode *node, gpointer data)
/* If it's uninterpreted data, dump it (unless our caller will
be printing the entire packet in hex). */
- if (fi->ptr_u.hfinfo->id == proto_data && pdata->print_hex_for_data) {
+ if (fi->hfinfo->id == proto_data && pdata->print_hex_for_data) {
/*
* Find the data for this field.
*/