aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-sigcomp.c
diff options
context:
space:
mode:
Diffstat (limited to 'epan/dissectors/packet-sigcomp.c')
-rw-r--r--epan/dissectors/packet-sigcomp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-sigcomp.c b/epan/dissectors/packet-sigcomp.c
index c6f6156b22..cfc10f4eec 100644
--- a/epan/dissectors/packet-sigcomp.c
+++ b/epan/dissectors/packet-sigcomp.c
@@ -436,7 +436,7 @@ try_again:
octet = tvb_get_guint8(tvb,offset);
if ( octet == 0xff ){
if ( offset +1 >= length ){
- /* if the tvb is short dont check for the second escape digit */
+ /* if the tvb is short don't check for the second escape digit */
offset++;
continue;
}
@@ -475,7 +475,7 @@ try_again:
proto_tree_add_text(sigcomp_tree, tvb, offset, octet,
" Copying %u bytes literally",octet);
if( offset+octet >= length)
- /* if the tvb is short dont copy further than the end */
+ /* if the tvb is short don't copy further than the end */
octet = length - offset;
for ( n=0; n < octet; n++ ){
buff[i] = tvb_get_guint8(tvb, offset);