aboutsummaryrefslogtreecommitdiffstats
path: root/asn1/ldap
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2008-01-04 12:39:52 +0000
committerAnders Broman <anders.broman@ericsson.com>2008-01-04 12:39:52 +0000
commita6d82ae12e1e12dfe99dcc837a13c5485f273964 (patch)
treef3f10ab56a6ea74a0443d3bc2f4868b94a333d5c /asn1/ldap
parenta67838484c96fa8f8a4cbce91f16c6f5cb1f80ee (diff)
Get rid of ber_last_created_item().
svn path=/trunk/; revision=24008
Diffstat (limited to 'asn1/ldap')
-rw-r--r--asn1/ldap/ldap.cnf13
1 files changed, 5 insertions, 8 deletions
diff --git a/asn1/ldap/ldap.cnf b/asn1/ldap/ldap.cnf
index 55c417ac0f..ce0e520590 100644
--- a/asn1/ldap/ldap.cnf
+++ b/asn1/ldap/ldap.cnf
@@ -36,7 +36,7 @@ SortResult B "1.2.840.113556.1.4.474" "sortResult"
ReplControlValue B "1.2.840.113556.1.4.841" "replControlValue"
#.FN_FTR LDAPURL
- PROTO_ITEM_SET_URL(get_ber_last_created_item());
+ PROTO_ITEM_SET_URL(actx->created_item);
#.FN_HDR LDAPOID
@@ -57,10 +57,9 @@ ReplControlValue B "1.2.840.113556.1.4.841" "replControlValue"
name = oid_resolved_from_string(object_identifier_id);
if(name){
- item = get_ber_last_created_item();
- proto_item_append_text(item, " (%s)", name);
- proto_item_append_text(tree, " %s", name);
+ proto_item_append_text(actx->created_item, " (%s)", name);
+ proto_item_append_text(actx->created_item, " %s", name);
}
@@ -307,7 +306,7 @@ ldap_conv_info_t *ldap_info;
if(!parameter_tvb) {
- proto_item_append_text(ber_last_created_item, " (%%s)", ldapstring);
+ proto_item_append_text(actx->created_item, " (%%s)", ldapstring);
}
} else if ((hf_index == hf_ldap_errorMessage) && result) { /* only show message if not success */
@@ -424,7 +423,6 @@ ldap_conv_info_t *ldap_info;
tvbuff_t *next_tvb;
gchar *string;
guint32 i, len;
- proto_item *pi;
int old_offset = offset;
/* extract the value of the octetstring */
@@ -448,9 +446,8 @@ ldap_conv_info_t *ldap_info;
if(i == len) {
string = tvb_get_ephemeral_string(next_tvb, 0, tvb_length_remaining(next_tvb, 0));
- pi = get_ber_last_created_item();
- proto_item_set_text(pi, "%%s", string);
+ proto_item_set_text(actx->created_item, "%%s", string);
}