aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-qnet6.c
diff options
context:
space:
mode:
Diffstat (limited to 'epan/dissectors/packet-qnet6.c')
-rw-r--r--epan/dissectors/packet-qnet6.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/epan/dissectors/packet-qnet6.c b/epan/dissectors/packet-qnet6.c
index e9d1b8d918..66256b4bd2 100644
--- a/epan/dissectors/packet-qnet6.c
+++ b/epan/dissectors/packet-qnet6.c
@@ -3100,7 +3100,7 @@ dissect_qnet6_kif_msgsend_msg(tvbuff_t * tvb, packet_info * pinfo, proto_tree *
*/
if (path_len > 0)
{
- proto_tree_add_item(stree, hf_qnet6_kif_msg_connect_path, tvb, *poffset, path_len, ENC_ASCII|ENC_NA);
+ proto_tree_add_item(stree, hf_qnet6_kif_msg_connect_path, tvb, *poffset, path_len, ENC_ASCII);
*poffset += path_len;
rlen -= path_len;
}
@@ -3155,18 +3155,18 @@ dissect_qnet6_kif_msgsend_msg(tvbuff_t * tvb, packet_info * pinfo, proto_tree *
/*
* extra data is the symlink new path name
*/
- proto_tree_add_item(stree, hf_qnet6_kif_msg_connect_extra_symlink_path, tvb, *poffset, extra_len, ENC_ASCII|ENC_NA);
+ proto_tree_add_item(stree, hf_qnet6_kif_msg_connect_extra_symlink_path, tvb, *poffset, extra_len, ENC_ASCII);
break;
case QNX_IO_CONNECT_EXTRA_RENAME:
/*
* extra data is the mv old new ,extra is old path
* name path is the new name
*/
- proto_tree_add_item(stree, hf_qnet6_kif_msg_connect_extra_rename_path, tvb, *poffset, extra_len, ENC_ASCII|ENC_NA);
+ proto_tree_add_item(stree, hf_qnet6_kif_msg_connect_extra_rename_path, tvb, *poffset, extra_len, ENC_ASCII);
break;
case QNX_IO_CONNECT_EXTRA_MOUNT:
case QNX_IO_CONNECT_EXTRA_MOUNT_OCB:
- proto_tree_add_item(stree, hf_qnet6_kif_msg_connect_extra_mount, tvb, *poffset, extra_len, ENC_ASCII|ENC_NA);
+ proto_tree_add_item(stree, hf_qnet6_kif_msg_connect_extra_mount, tvb, *poffset, extra_len, ENC_ASCII);
break;
case QNX_IO_CONNECT_EXTRA_NONE: /* 0 */
default: