aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--epan/ftypes/ftypes.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/epan/ftypes/ftypes.c b/epan/ftypes/ftypes.c
index 0e81ec9a47..b3d4ca6944 100644
--- a/epan/ftypes/ftypes.c
+++ b/epan/ftypes/ftypes.c
@@ -651,7 +651,8 @@ fvalue_get_uinteger(fvalue_t *fv)
fv->ftype->ftype == FT_UINT24 ||
fv->ftype->ftype == FT_UINT32 ||
fv->ftype->ftype == FT_IPXNET ||
- fv->ftype->ftype == FT_FRAMENUM);
+ fv->ftype->ftype == FT_FRAMENUM ||
+ fv->ftype->ftype == FT_IPv4);
g_assert(fv->ftype->get_value.get_value_uinteger);
return fv->ftype->get_value.get_value_uinteger(fv);
}