summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTomas Kukosa <tomas.kukosa@siemens.com>2006-10-17 06:01:54 +0000
committerTomas Kukosa <tomas.kukosa@siemens.com>2006-10-17 06:01:54 +0000
commite1e18ea39387e942c455d03d0145c8e4c7867ce5 (patch)
treec806cbe7e9fa7635db29538c492237d955f586ae
parentd5cee1152d88869fef22b94006dd0351d388a9f8 (diff)
downloadwireshark-e1e18ea39387e942c455d03d0145c8e4c7867ce5.tar.gz
update Timestamps Option labels in accordance with RFC1323
svn path=/trunk/; revision=19570
-rw-r--r--epan/dissectors/packet-tcp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-tcp.c b/epan/dissectors/packet-tcp.c
index 52fde13a16..aa1ffa69a5 100644
--- a/epan/dissectors/packet-tcp.c
+++ b/epan/dissectors/packet-tcp.c
@@ -1687,7 +1687,7 @@ dissect_tcpopt_timestamp(const ip_tcp_opt *optp, tvbuff_t *tvb,
proto_tree_add_boolean_hidden(opt_tree, hf_tcp_option_time_stamp, tvb,
offset, optlen, TRUE);
proto_tree_add_text(opt_tree, tvb, offset, optlen,
- "%s: tsval %u, tsecr %u", optp->name, tsv, tser);
+ "%s: TSval %u, TSecr %u", optp->name, tsv, tser);
tcp_info_append_uint(pinfo, "TSV", tsv);
tcp_info_append_uint(pinfo, "TSER", tser);
}
@@ -1773,7 +1773,7 @@ static const ip_tcp_opt tcpopts[] = {
},
{
TCPOPT_TIMESTAMP,
- "Time stamp",
+ "Timestamps",
NULL,
FIXED_LENGTH,
TCPOLEN_TIMESTAMP,