aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-netflow.c
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2016-09-30 11:21:05 -0700
committerGerald Combs <gerald@wireshark.org>2016-09-30 20:56:11 +0000
commitcda23193bfa9f5b9b1753742ebffdaddd75a73c2 (patch)
tree57de76b3d8eed2becd412d199a09b065711cb17b /epan/dissectors/packet-netflow.c
parent11c10244ef5168a337d88611d61c5ebc88acd29e (diff)
NetFlow: Fix a preference description.
Stringify the correct macro so that we print (default: 60) instead of (default: V9TEMPLATE_MAX_FIELDS_DEF) Change-Id: Ie2068eaf577f6024d4a9b64ef5ce761944f269a2 Reviewed-on: https://code.wireshark.org/review/17998 Petri-Dish: Gerald Combs <gerald@wireshark.org> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Gerald Combs <gerald@wireshark.org>
Diffstat (limited to 'epan/dissectors/packet-netflow.c')
-rw-r--r--epan/dissectors/packet-netflow.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/epan/dissectors/packet-netflow.c b/epan/dissectors/packet-netflow.c
index f82f8c6838..88a4e954f0 100644
--- a/epan/dissectors/packet-netflow.c
+++ b/epan/dissectors/packet-netflow.c
@@ -772,6 +772,7 @@ static const value_string v9_v10_template_types[] = {
{ 37084, "TRANSPORT_TCP_WINDOWS_SIZE_MAX" },
{ 37085, "TRANSPORT_TCP_WINDOWS_SIZE_MEAN" },
{ 37086, "TRANSPORT_TCP_MAXIMUM_SEGMENT_SIZE" },
+ /* Cisco ASA 5500 */
{ 40000, "AAA_USERNAME" },
{ 40001, "XLATE_SRC_ADDR_IPV4" },
{ 40002, "XLATE_DST_ADDR_IPV4" },
@@ -11995,7 +11996,7 @@ proto_register_netflow(void)
"Maximum number of fields allowed in a template",
"Set the number of fields allowed in a template. "
"Use 0 (zero) for unlimited. "
- " (default: " G_STRINGIFY(V9TEMPLATE_MAX_FIELDS_DEF) ")",
+ " (default: " G_STRINGIFY(V9_TMPLT_MAX_FIELDS_DEF) ")",
10, &v9_tmplt_max_fields);
register_init_routine(&netflow_init);