summaryrefslogtreecommitdiff
path: root/epan/dissectors/packet-fc.c
diff options
context:
space:
mode:
authorRonnie Sahlberg <ronnie_sahlberg@ozemail.com.au>2006-08-14 08:29:29 +0000
committerRonnie Sahlberg <ronnie_sahlberg@ozemail.com.au>2006-08-14 08:29:29 +0000
commit8ce8e719e0a4b95b7720841f025918c280ded13d (patch)
tree6dd08df9d5efc4d94faa451f8f0eec242166f25a /epan/dissectors/packet-fc.c
parentc6c15e8b6b0d431b6da83512984718cd8b072b01 (diff)
downloadwireshark-8ce8e719e0a4b95b7720841f025918c280ded13d.tar.gz
rename some structures and defines from the se_tree to the emem_tree prefix
svn path=/trunk/; revision=18894
Diffstat (limited to 'epan/dissectors/packet-fc.c')
-rw-r--r--epan/dissectors/packet-fc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-fc.c b/epan/dissectors/packet-fc.c
index 2fdf492596..43e60865c4 100644
--- a/epan/dissectors/packet-fc.c
+++ b/epan/dissectors/packet-fc.c
@@ -135,7 +135,7 @@ static dissector_handle_t data_handle;
static int fc_tap = -1;
typedef struct _fc_conv_data_t {
- se_tree_t *exchanges;
+ emem_tree_t *exchanges;
} fc_conv_data_t;
@@ -661,7 +661,7 @@ dissect_fc_helper (tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, gboolean
fc_conv_data=conversation_get_proto_data(conversation, proto_fc);
if(!fc_conv_data){
fc_conv_data=se_alloc(sizeof(fc_conv_data_t));
- fc_conv_data->exchanges=se_tree_create_non_persistent(SE_TREE_TYPE_RED_BLACK, "FC Exchanges");
+ fc_conv_data->exchanges=se_tree_create_non_persistent(EMEM_TREE_TYPE_RED_BLACK, "FC Exchanges");
conversation_add_proto_data(conversation, proto_fc, fc_conv_data);
}