summaryrefslogtreecommitdiff
path: root/epan/dissectors/packet-dbus.c
diff options
context:
space:
mode:
authorJaap Keuter <jaap.keuter@xs4all.nl>2013-04-01 15:29:49 +0000
committerJaap Keuter <jaap.keuter@xs4all.nl>2013-04-01 15:29:49 +0000
commit97136126bc2b40c66355e10df07abef96254a2bc (patch)
treef652a2cabc2c0f91a9af52fe22a7155c54f0a29e /epan/dissectors/packet-dbus.c
parentdfc87f20dff7dca976719e4ac607b64ce2b741ca (diff)
downloadwireshark-97136126bc2b40c66355e10df07abef96254a2bc.tar.gz
Typo's. That is all.
svn path=/trunk/; revision=48685
Diffstat (limited to 'epan/dissectors/packet-dbus.c')
-rw-r--r--epan/dissectors/packet-dbus.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/epan/dissectors/packet-dbus.c b/epan/dissectors/packet-dbus.c
index ceefac7a03..2cc4945df2 100644
--- a/epan/dissectors/packet-dbus.c
+++ b/epan/dissectors/packet-dbus.c
@@ -38,7 +38,7 @@ void proto_reg_handoff_dbus(void);
static gboolean dbus_desegment = TRUE;
static int hf_dbus_hdr = -1;
-static int hf_dbus_hdr_endianess = -1;
+static int hf_dbus_hdr_endianness = -1;
static int hf_dbus_hdr_type = -1;
static int hf_dbus_hdr_flags = -1;
static int hf_dbus_hdr_version = -1;
@@ -428,7 +428,7 @@ dissect_dbus_hdr(tvbuff_t *tvb, dbus_info_t *dinfo, proto_tree *tree, int offset
ti = proto_tree_add_item(tree, hf_dbus_hdr, tvb, offset, 0, ENC_NA);
hdr_tree = proto_item_add_subtree(ti, ett_dbus_hdr);
- proto_tree_add_item(hdr_tree, hf_dbus_hdr_endianess, tvb, offset, 1, ENC_ASCII | ENC_NA);
+ proto_tree_add_item(hdr_tree, hf_dbus_hdr_endianness, tvb, offset, 1, ENC_ASCII | ENC_NA);
offset += 1;
type = tvb_get_guint8(tvb, offset);
@@ -586,8 +586,8 @@ proto_register_dbus(void)
{ &hf_dbus_hdr,
{ "Header", "dbus.header", FT_NONE, BASE_NONE, NULL, 0x00, NULL, HFILL }
},
- { &hf_dbus_hdr_endianess,
- { "Endianess Flag", "dbus.endianess", FT_STRING, BASE_NONE, NULL, 0x00, NULL, HFILL }
+ { &hf_dbus_hdr_endianness,
+ { "Endianness Flag", "dbus.endianness", FT_STRING, BASE_NONE, NULL, 0x00, NULL, HFILL }
},
{ &hf_dbus_hdr_type,
{ "Message Type", "dbus.type", FT_UINT8, BASE_DEC, VALS(message_type_vals), 0x00, NULL, HFILL }