aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors
diff options
context:
space:
mode:
authorMichael Tüxen <tuexen@fh-muenster.de>2012-08-15 15:28:26 +0000
committerMichael Tüxen <tuexen@fh-muenster.de>2012-08-15 15:28:26 +0000
commit171e2abe1370d203ea14c4da7e8252aef03c96d4 (patch)
treeeacda1da4344dea006deff08469dd7ab8cceb296 /epan/dissectors
parent3082032be6c6e89821d2ab23a2a27fac786f9897 (diff)
Get it compiling.
svn path=/trunk/; revision=44518
Diffstat (limited to 'epan/dissectors')
-rw-r--r--epan/dissectors/packet-dmp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-dmp.c b/epan/dissectors/packet-dmp.c
index 88a5f67b8b..d01d65312c 100644
--- a/epan/dissectors/packet-dmp.c
+++ b/epan/dissectors/packet-dmp.c
@@ -3531,7 +3531,7 @@ static gint dissect_dmp_security_category (tvbuff_t *tvb, packet_info *pinfo,
(message & 0x20) ? ",ex" : "",
(message & 0x10) ? ",ne" : "");
proto_item_append_text (tf, ": %s", &sec_cat[1]);
- *label_string = ep_strconcat(*label_string, sec_cat);
+ *label_string = ep_strconcat(*label_string, sec_cat, NULL);
}
break;
@@ -3725,7 +3725,7 @@ static gint dissect_dmp_content (tvbuff_t *tvb, packet_info *pinfo,
tf = proto_tree_add_item (field_tree, hf_message_sec_class_val, tvb, offset, 1, ENC_BIG_ENDIAN);
if (class_name) {
proto_item_append_text (tf, " (%s)", class_name);
- label_string = ep_strconcat(label_string, class_name);
+ label_string = ep_strconcat(label_string, class_name, NULL);
}
/* Security Policy */