aboutsummaryrefslogtreecommitdiffstats
path: root/epan
diff options
context:
space:
mode:
Diffstat (limited to 'epan')
-rw-r--r--epan/dfilter/semcheck.c2
-rw-r--r--epan/dfilter/sttype-string.c8
2 files changed, 8 insertions, 2 deletions
diff --git a/epan/dfilter/semcheck.c b/epan/dfilter/semcheck.c
index 89ddc9d65b..c0eeb976ab 100644
--- a/epan/dfilter/semcheck.c
+++ b/epan/dfilter/semcheck.c
@@ -1131,7 +1131,7 @@ check_relation_matches(dfwork_t *dfw, stnode_t *st_node,
const char *patt;
if (stnode_type_id(st_arg2) != STTYPE_STRING) {
- dfilter_fail(dfw, "Expected a string not %s", stnode_todisplay(st_arg2));
+ dfilter_fail(dfw, "Expected a double quoted string not %s", stnode_todisplay(st_arg2));
THROW(TypeError);
}
diff --git a/epan/dfilter/sttype-string.c b/epan/dfilter/sttype-string.c
index 770d0765fb..794787432d 100644
--- a/epan/dfilter/sttype-string.c
+++ b/epan/dfilter/sttype-string.c
@@ -35,6 +35,12 @@ string_tostr(const void *data, gboolean pretty)
return g_strdup(data);
}
+static char *
+unparsed_tostr(const void *data, gboolean pretty _U_)
+{
+ return g_strdup(data);
+}
+
void
sttype_register_string(void)
@@ -54,7 +60,7 @@ sttype_register_string(void)
string_new,
string_free,
string_dup,
- string_tostr
+ unparsed_tostr
};
sttype_register(&string_type);