aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dfilter/sttype-string.c
diff options
context:
space:
mode:
Diffstat (limited to 'epan/dfilter/sttype-string.c')
-rw-r--r--epan/dfilter/sttype-string.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/epan/dfilter/sttype-string.c b/epan/dfilter/sttype-string.c
index 8be5f33378..c5cf2c62f6 100644
--- a/epan/dfilter/sttype-string.c
+++ b/epan/dfilter/sttype-string.c
@@ -51,6 +51,14 @@ sttype_register_string(void)
string_dup
};
+ static sttype_t charconst_type = {
+ STTYPE_CHARCONST,
+ "CHARCONST",
+ string_new,
+ string_free,
+ string_dup
+ };
+
static sttype_t unparsed_type = {
STTYPE_UNPARSED,
"UNPARSED",
@@ -60,6 +68,7 @@ sttype_register_string(void)
};
sttype_register(&string_type);
+ sttype_register(&charconst_type);
sttype_register(&unparsed_type);
}