aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dfilter
diff options
context:
space:
mode:
authorJeffrey Smith <whydoubt@gmail.com>2015-09-06 20:56:30 -0500
committerMichael Mann <mmann78@netscape.net>2015-10-01 20:49:42 +0000
commit57d954e1689ab31c6afac0a787f13754b8a39a49 (patch)
tree84b10a57e6a83cb5c5ce23c99fe1d90d68ebad04 /epan/dfilter
parentb02a0ee48a51ccbb33ad76ce84ecb05409a6973a (diff)
Treat IPv4 subnet masks as distinct from addresses
While IPv4 subnet masks are obviously related and similar to IPv4 addresses, they are distinct enough that they need to be treated seperately in some aspects. For instance, there is no value in attempting to resolve a subnet mask. This change creates a new display type: BASE_NETMASK, which allows distinction from FT_IPv4 (and possible name resolution) where appropriate. Change-Id: I99e19c9a58eb613f8e58d481af84c30e2e5e14d7 Reviewed-on: https://code.wireshark.org/review/10438 Petri-Dish: Michael Mann <mmann78@netscape.net> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Alexis La Goutte <alexis.lagoutte@gmail.com> Reviewed-by: Michael Mann <mmann78@netscape.net>
Diffstat (limited to 'epan/dfilter')
-rw-r--r--epan/dfilter/scanner.l2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dfilter/scanner.l b/epan/dfilter/scanner.l
index 7a6b66eaa4..eedee62b07 100644
--- a/epan/dfilter/scanner.l
+++ b/epan/dfilter/scanner.l
@@ -250,7 +250,7 @@ static void mark_lval_deprecated(const char *s);
-[-[:alnum:]_\.:]+\/[[:digit:]]+ {
+[-[:alnum:]_\.:]*\/[[:digit:]]+ {
/* CIDR */
return set_lval(TOKEN_UNPARSED, yytext);
}