aboutsummaryrefslogtreecommitdiffstats
path: root/file.c
diff options
context:
space:
mode:
authorRonnie Sahlberg <ronnie_sahlberg@ozemail.com.au>2003-11-25 14:07:45 +0000
committerRonnie Sahlberg <ronnie_sahlberg@ozemail.com.au>2003-11-25 14:07:45 +0000
commit9d88e58e5102d65a42d1f5ff4cc7fa9c3536a3dc (patch)
tree60505c1df159a4fc2ae2c8049dbf215cecec99f3 /file.c
parent04d07e6578c25ac1c4488fb7f2d246866718a8a9 (diff)
remove another slow GMemChunk from ethereal making ethereal a little bit faster
svn path=/trunk/; revision=9085
Diffstat (limited to 'file.c')
-rw-r--r--file.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/file.c b/file.c
index 5b1490ebaf..21c37baa22 100644
--- a/file.c
+++ b/file.c
@@ -1,7 +1,7 @@
/* file.c
* File I/O routines
*
- * $Id: file.c,v 1.323 2003/11/15 10:06:44 ulfl Exp $
+ * $Id: file.c,v 1.324 2003/11/25 14:07:42 sahlberg Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -1650,8 +1650,8 @@ match_subtree_text(GNode *node, gpointer data)
return;
/* was a free format label produced? */
- if (fi->representation) {
- label_ptr = fi->representation;
+ if (fi->rep) {
+ label_ptr = fi->rep->representation;
} else {
/* no, make a generic label */
label_ptr = label_str;