aboutsummaryrefslogtreecommitdiffstats
path: root/epan/ftypes/ftype-string.c
diff options
context:
space:
mode:
authorJoão Valverde <j@v6e.pt>2022-03-31 14:50:20 +0100
committerJoão Valverde <j@v6e.pt>2022-03-31 16:49:42 +0100
commit8bc214b5bbfa3a6c90986818856a56e7bafd2b3a (patch)
tree311ad2d98a77ed467e99c0ecc7aead909390ea15 /epan/ftypes/ftype-string.c
parentd54e22b8720f3ef5af82c2b5d2987c421d2be024 (diff)
dfilter: Add remaining arithmetic integer ops
Diffstat (limited to 'epan/ftypes/ftype-string.c')
-rw-r--r--epan/ftypes/ftype-string.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/epan/ftypes/ftype-string.c b/epan/ftypes/ftype-string.c
index f42ac968f9..776e980c22 100644
--- a/epan/ftypes/ftype-string.c
+++ b/epan/ftypes/ftype-string.c
@@ -196,6 +196,9 @@ ftype_register_string(void)
NULL, /* unary_minus */
NULL, /* add */
NULL, /* subtract */
+ NULL, /* multiply */
+ NULL, /* divide */
+ NULL, /* modulo */
};
static ftype_t stringz_type = {
FT_STRINGZ, /* ftype */
@@ -224,6 +227,9 @@ ftype_register_string(void)
NULL, /* unary_minus */
NULL, /* add */
NULL, /* subtract */
+ NULL, /* multiply */
+ NULL, /* divide */
+ NULL, /* modulo */
};
static ftype_t uint_string_type = {
FT_UINT_STRING, /* ftype */
@@ -252,6 +258,9 @@ ftype_register_string(void)
NULL, /* unary_minus */
NULL, /* add */
NULL, /* subtract */
+ NULL, /* multiply */
+ NULL, /* divide */
+ NULL, /* modulo */
};
static ftype_t stringzpad_type = {
FT_STRINGZPAD, /* ftype */
@@ -280,6 +289,9 @@ ftype_register_string(void)
NULL, /* unary_minus */
NULL, /* add */
NULL, /* subtract */
+ NULL, /* multiply */
+ NULL, /* divide */
+ NULL, /* modulo */
};
static ftype_t stringztrunc_type = {
FT_STRINGZTRUNC, /* ftype */
@@ -308,6 +320,9 @@ ftype_register_string(void)
NULL, /* unary_minus */
NULL, /* add */
NULL, /* subtract */
+ NULL, /* multiply */
+ NULL, /* divide */
+ NULL, /* modulo */
};
ftype_register(FT_STRING, &string_type);