aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-gdb.c
diff options
context:
space:
mode:
Diffstat (limited to 'epan/dissectors/packet-gdb.c')
-rw-r--r--epan/dissectors/packet-gdb.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/epan/dissectors/packet-gdb.c b/epan/dissectors/packet-gdb.c
index d3ec7fd7f2..6cdd18faf6 100644
--- a/epan/dissectors/packet-gdb.c
+++ b/epan/dissectors/packet-gdb.c
@@ -75,7 +75,7 @@ dissect_gdb_token(void *tvbparse_data, const void *wanted_data, tvbparse_elem_t
break;
case GDB_TOK_START:
proto_tree_add_item(tree, hf_gdb_start,
- tok->tvb, tok->offset, tok->len, ENC_ASCII|ENC_NA);
+ tok->tvb, tok->offset, tok->len, ENC_ASCII);
break;
case GDB_TOK_PAYLOAD:
proto_tree_add_item(tree, hf_gdb_payload,
@@ -83,11 +83,11 @@ dissect_gdb_token(void *tvbparse_data, const void *wanted_data, tvbparse_elem_t
break;
case GDB_TOK_END:
proto_tree_add_item(tree, hf_gdb_end,
- tok->tvb, tok->offset, tok->len, ENC_ASCII|ENC_NA);
+ tok->tvb, tok->offset, tok->len, ENC_ASCII);
break;
case GDB_TOK_CHKSUM:
proto_tree_add_item(tree, hf_gdb_chksum,
- tok->tvb, tok->offset, tok->len, ENC_ASCII|ENC_NA);
+ tok->tvb, tok->offset, tok->len, ENC_ASCII);
break;
default:
break;