aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-ntp.c
diff options
context:
space:
mode:
authorJaap Keuter <jaap.keuter@xs4all.nl>2006-10-26 14:36:09 +0000
committerJaap Keuter <jaap.keuter@xs4all.nl>2006-10-26 14:36:09 +0000
commitf7aa75ba229008e8d3a4b3a24224f5dcab94e1c1 (patch)
treef9d61d3360bcc2ce0da70dad2be7427363bcafaf /epan/dissectors/packet-ntp.c
parentc2c13fcecb51aae1a05c83688a287a8dea4eb2b3 (diff)
From Xiaoguang Liu
In wireshark a NTP field is displayed as "clock dispersion". But should it be called "root dispersion" as per RFC 1305? svn path=/trunk/; revision=19705
Diffstat (limited to 'epan/dissectors/packet-ntp.c')
-rw-r--r--epan/dissectors/packet-ntp.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/epan/dissectors/packet-ntp.c b/epan/dissectors/packet-ntp.c
index f108117630..9bff5dcb51 100644
--- a/epan/dissectors/packet-ntp.c
+++ b/epan/dissectors/packet-ntp.c
@@ -539,7 +539,7 @@ dissect_ntp_std(tvbuff_t *tvb, proto_tree *ntp_tree, guint8 flags)
(tvb_get_ntohs(tvb, 10) / 65536.0);
proto_tree_add_double_format(ntp_tree, hf_ntp_rootdispersion, tvb, 8, 4,
rootdispersion,
- "Clock Dispersion: %9.4f sec",
+ "Root Dispersion: %9.4f sec",
rootdispersion);
/* Now, there is a problem with secondary servers. Standards
@@ -846,8 +846,8 @@ proto_register_ntp(void)
"Root Delay", "ntp.rootdelay", FT_DOUBLE, BASE_DEC,
NULL, 0, "Root Delay", HFILL }},
{ &hf_ntp_rootdispersion, {
- "Clock Dispersion", "ntp.rootdispersion", FT_DOUBLE, BASE_DEC,
- NULL, 0, "Clock Dispersion", HFILL }},
+ "Root Dispersion", "ntp.rootdispersion", FT_DOUBLE, BASE_DEC,
+ NULL, 0, "Root Dispersion", HFILL }},
{ &hf_ntp_refid, {
"Reference Clock ID", "ntp.refid", FT_BYTES, BASE_NONE,
NULL, 0, "Reference Clock ID", HFILL }},