aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2012-05-11 07:34:47 +0000
committerGuy Harris <guy@alum.mit.edu>2012-05-11 07:34:47 +0000
commit957ef532c184a85d356b985ae911fb985c977a10 (patch)
treeecbcb3571456400e129be64df02a72826d1035ff
parent6c0db47ef83372a415d5b727098441c9265e2e95 (diff)
Get rid of remaining Booleans-as-encoding-arguments in
proto_tree_add_item() calls. svn path=/trunk/; revision=42562
-rw-r--r--asn1/ulp/ulp.cnf2
-rw-r--r--epan/dissectors/packet-ulp.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/asn1/ulp/ulp.cnf b/asn1/ulp/ulp.cnf
index a287518391..f5cebf011e 100644
--- a/asn1/ulp/ulp.cnf
+++ b/asn1/ulp/ulp.cnf
@@ -26,7 +26,7 @@ SETId/min minsi
#.END
#.FN_HDR ULP-PDU
- proto_tree_add_item(tree, proto_ulp, tvb, 0, -1, FALSE);
+ proto_tree_add_item(tree, proto_ulp, tvb, 0, -1, ENC_NA);
col_set_str(actx->pinfo->cinfo, COL_PROTOCOL, PSNAME);
col_clear(actx->pinfo->cinfo, COL_INFO);
diff --git a/epan/dissectors/packet-ulp.c b/epan/dissectors/packet-ulp.c
index f767306f40..2779ab6ad6 100644
--- a/epan/dissectors/packet-ulp.c
+++ b/epan/dissectors/packet-ulp.c
@@ -6250,7 +6250,7 @@ static const per_sequence_t ULP_PDU_sequence[] = {
static int
dissect_ulp_ULP_PDU(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, proto_tree *tree _U_, int hf_index _U_) {
#line 29 "../../asn1/ulp/ulp.cnf"
- proto_tree_add_item(tree, proto_ulp, tvb, 0, -1, FALSE);
+ proto_tree_add_item(tree, proto_ulp, tvb, 0, -1, ENC_NA);
col_set_str(actx->pinfo->cinfo, COL_PROTOCOL, PSNAME);
col_clear(actx->pinfo->cinfo, COL_INFO);