summaryrefslogtreecommitdiff
path: root/epan/dissectors/packet-winsrepl.c
diff options
context:
space:
mode:
Diffstat (limited to 'epan/dissectors/packet-winsrepl.c')
-rw-r--r--epan/dissectors/packet-winsrepl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-winsrepl.c b/epan/dissectors/packet-winsrepl.c
index a28f9e4457..d1f366da1e 100644
--- a/epan/dissectors/packet-winsrepl.c
+++ b/epan/dissectors/packet-winsrepl.c
@@ -428,7 +428,7 @@ dissect_winsrepl_wins_name(tvbuff_t *winsrepl_tvb, packet_info *pinfo,
/* ALIGN to 4 Byte */
/* winsrepl_offset += ((winsrepl_offset & (4-1)) == 0 ? 0 : (4 - (winsrepl_offset & (4-1)))); */
/* Windows including w2k8 add 4 padding bytes, when it's already 4 byte
- * alligned... This happens when the name has a "scope" part
+ * aligned... This happens when the name has a "scope" part
*/
winsrepl_offset += 4 - (winsrepl_offset & (4-1));
@@ -550,7 +550,7 @@ dissect_winsrepl_replication(tvbuff_t *winsrepl_tvb, packet_info *pinfo,
repl_tree = proto_tree_add_subtree(winsrepl_tree, winsrepl_tvb, winsrepl_offset, -1,
ett_winsrepl_replication, &repl_item, "WREPL_REPLICATION");
- /* REPLIICATION_CMD */
+ /* REPLICATION_CMD */
command = (enum wrepl_replication_cmd)tvb_get_ntohl(winsrepl_tvb, winsrepl_offset);
proto_tree_add_uint(repl_tree, hf_winsrepl_replication_command, winsrepl_tvb, winsrepl_offset, 4, command);
winsrepl_offset += 4;