aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-netflow.c
diff options
context:
space:
mode:
authorUli Heilmeier <uh@heilmeier.eu>2017-12-24 13:48:13 +0100
committerAnders Broman <a.broman58@gmail.com>2017-12-24 20:22:09 +0000
commit8642d72f36239267c474ef096252dc64ac6fd710 (patch)
tree498d5525242977a38f00756c7afed8845ec1e0e3 /epan/dissectors/packet-netflow.c
parentf5e7f273c98aadc26cd2549df84a24ead50182dc (diff)
Netflow: Fix typo for ntop_radius_acct_in_pkts
Change-Id: If531189c0409050bf7213d3488ab32ccc0ee1000 Reviewed-on: https://code.wireshark.org/review/24979 Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'epan/dissectors/packet-netflow.c')
-rw-r--r--epan/dissectors/packet-netflow.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/epan/dissectors/packet-netflow.c b/epan/dissectors/packet-netflow.c
index a688930180..404d5c1d25 100644
--- a/epan/dissectors/packet-netflow.c
+++ b/epan/dissectors/packet-netflow.c
@@ -2638,7 +2638,7 @@ static int hf_pie_ntop_radius_acct_session_id = -1;
static int hf_pie_ntop_radius_acct_status_type = -1;
static int hf_pie_ntop_radius_acct_in_octects = -1;
static int hf_pie_ntop_radius_acct_out_octects = -1;
-static int hf_pie_ntop_radus_acct_in_pkts = -1;
+static int hf_pie_ntop_radius_acct_in_pkts = -1;
static int hf_pie_ntop_radius_acct_out_pkts = -1;
static int hf_pie_ntop_imap_login = -1;
@@ -7693,7 +7693,7 @@ dissect_v9_v10_pdu_data(tvbuff_t *tvb, packet_info *pinfo, proto_tree *pdutree,
case (NTOP_BASE + 254): /* RADIUS_ACCT_IN_PKTS */
case ((VENDOR_NTOP << 16) | 254): /* RADIUS_ACCT_IN_PKTS */
- ti = proto_tree_add_item(pdutree, hf_pie_ntop_radius_acct_out_pkts,
+ ti = proto_tree_add_item(pdutree, hf_pie_ntop_radius_acct_in_pkts,
tvb, offset, length, ENC_BIG_ENDIAN);
break;
@@ -13964,8 +13964,8 @@ proto_register_netflow(void)
NULL, HFILL}
},
/* ntop, 35632 / 254 */
- {&hf_pie_ntop_radus_acct_in_pkts,
- {"RADIUS Accounting Input Packets", "cflow.pie.ntop.radus_acct_in_pkts",
+ {&hf_pie_ntop_radius_acct_in_pkts,
+ {"RADIUS Accounting Input Packets", "cflow.pie.ntop.radius_acct_in_pkts",
FT_UINT32, BASE_DEC, NULL, 0x0,
NULL, HFILL}
},