summaryrefslogtreecommitdiff
path: root/epan/dissectors/packet-gvcp.c
diff options
context:
space:
mode:
authorSake Blok <sake@euronet.nl>2011-01-21 00:19:03 +0000
committerSake Blok <sake@euronet.nl>2011-01-21 00:19:03 +0000
commit6e74ad909766c7812417a09b1e691622e4dfa643 (patch)
tree83dc57e30eb921cdebcfc8f4feceb3e8a0165ed6 /epan/dissectors/packet-gvcp.c
parent9e1d1e0e1338397a279fc4bc01038d9864a31a2f (diff)
downloadwireshark-6e74ad909766c7812417a09b1e691622e4dfa643.tar.gz
Adress => Address corrections (also in comments).
(see bug 5600) svn path=/trunk/; revision=35600
Diffstat (limited to 'epan/dissectors/packet-gvcp.c')
-rw-r--r--epan/dissectors/packet-gvcp.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/epan/dissectors/packet-gvcp.c b/epan/dissectors/packet-gvcp.c
index cbd43c77dc..dc47474d44 100644
--- a/epan/dissectors/packet-gvcp.c
+++ b/epan/dissectors/packet-gvcp.c
@@ -182,7 +182,7 @@ dissect_gvcp(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
case 0x81: /* Register Read Answer */
if (packet_plsize == 0) {
ep_strbuf_append(info, " <missing arg(s)>");
- } else { /* packet contains adress(es) to read from */
+ } else { /* packet contains address(es) to read from */
ep_strbuf_append_printf(info, " 0x%08x", tvb_get_ntohl(tvb, 8));
if (packet_plsize >= 8) {
ep_strbuf_append_printf(info, ", 0x%08x", tvb_get_ntohl(tvb, 12));
@@ -194,7 +194,7 @@ dissect_gvcp(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
case 0x82: /* Register Write Request */
if (packet_plsize < 8) {
ep_strbuf_append(info, " <missing arg(s)>");
- } else { /* packet contains adress/value pairs to read from */
+ } else { /* packet contains address/value pairs to read from */
ep_strbuf_append_printf(info, " *0x%08x = 0x%08x", tvb_get_ntohl(tvb, 8),
tvb_get_ntohl(tvb, 12));
if (packet_plsize >= 16) {
@@ -217,7 +217,7 @@ dissect_gvcp(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
case 0x84: /* Block Read Request */
if (packet_plsize < 8) {
ep_strbuf_append(info, " <missing args>");
- } else { /* packet contains adress/size pair to read from */
+ } else { /* packet contains address/size pair to read from */
ep_strbuf_append_printf(info, " 0x%08x (%d bytes, X=0x%04x)",
tvb_get_ntohl(tvb, 8), tvb_get_ntohs(tvb, 14),
tvb_get_ntohs(tvb, 12));