aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-ptp.c
diff options
context:
space:
mode:
authorMichael Mann <mmann78@netscape.net>2016-02-21 08:25:40 -0500
committerMichael Mann <mmann78@netscape.net>2016-02-21 13:26:46 +0000
commit024bf62555046c24e1ab6b471e4023aea159dd08 (patch)
tree4c46f806c1a7d9f9d389e1ce223785ee62445b9f /epan/dissectors/packet-ptp.c
parentf0fb79d534c4276d30838bb25fc624e3eabce83c (diff)
Fix typo in PTP / Follow_Up Message / Follow Up information TLV.
scaledLastGMPhaseChange -> scaledLastGmFreqChange Bug: 12150 Change-Id: I7b3d58c7d59364acb029e87f42da464c8840b95a Reviewed-on: https://code.wireshark.org/review/14050 Reviewed-by: Michael Mann <mmann78@netscape.net>
Diffstat (limited to 'epan/dissectors/packet-ptp.c')
-rw-r--r--epan/dissectors/packet-ptp.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/epan/dissectors/packet-ptp.c b/epan/dissectors/packet-ptp.c
index b46f7b8e11..66505613d3 100644
--- a/epan/dissectors/packet-ptp.c
+++ b/epan/dissectors/packet-ptp.c
@@ -1357,7 +1357,7 @@ static int hf_ptp_as_fu_tlv_organization_subtype = -1;
static int hf_ptp_as_fu_tlv_cumulative_offset = -1;
static int hf_ptp_as_fu_tlv_gm_base_indicator = -1;
static int hf_ptp_as_fu_tlv_last_gm_phase_change = -1;
-static int hf_ptp_as_fu_tlv_scaled_last_gm_phase_change = -1;
+static int hf_ptp_as_fu_tlv_scaled_last_gm_freq_change = -1;
/* Fields for PTP_DelayResponse (=dr) messages */
/* static int hf_ptp_v2_dr_receivetimestamp = -1; */ /* Field for seconds & nanoseconds */
@@ -2861,7 +2861,7 @@ dissect_ptp_v2(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, gboolean ptp
ENC_NA);
proto_tree_add_item(ptp_tlv_tree,
- hf_ptp_as_fu_tlv_scaled_last_gm_phase_change,
+ hf_ptp_as_fu_tlv_scaled_last_gm_freq_change,
tvb,
PTP_AS_FU_TLV_INFORMATION_OFFSET + PTP_AS_FU_TLV_SCALEDLASTGMFREQCHANGE_OFFSET,
4,
@@ -5130,8 +5130,8 @@ proto_register_ptp(void)
FT_BYTES, BASE_NONE, NULL, 0x00,
NULL, HFILL }
},
- { &hf_ptp_as_fu_tlv_scaled_last_gm_phase_change,
- { "scaledLastGMPhaseChange", "ptp.as.fu.scaledLastGmPhaseChange",
+ { &hf_ptp_as_fu_tlv_scaled_last_gm_freq_change,
+ { "scaledLastGmFreqChange", "ptp.as.fu.scaledLastGmFreqChange",
FT_INT32, BASE_DEC, NULL, 0x00,
NULL, HFILL }
},