aboutsummaryrefslogtreecommitdiffstats
path: root/asn1/pres/pres.cnf
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2005-09-04 09:00:01 +0000
committerAnders Broman <anders.broman@ericsson.com>2005-09-04 09:00:01 +0000
commitbc4b6481b473f64f20cb5d1c013b79eced4ddef5 (patch)
tree152a1b64148ecf3fcafc4ba2c62b3d2995bb278e /asn1/pres/pres.cnf
parent60eb171f7a761439d460096853dcb0a9d91b535a (diff)
From Graeme Lunt:
Basically the changes are: a) [pres] make the find_oid_by_[pres_]ctx_id (I changed the name to make it more specific) non-static so it can be called from other dissectors (see acse.cnf changes). I also call it from RTSE and ROS dissectors b) [acse] remove (#ifdef NOT_NEEDED) the oid lookup table and any reference to acse_handle - as these are no longer needed c) [acse] register the acse dissector on 2.2.1.0.1 with some modifications: -#ifdef:ed code removed - renamed aco -> pco svn path=/trunk/; revision=15678
Diffstat (limited to 'asn1/pres/pres.cnf')
-rw-r--r--asn1/pres/pres.cnf2
1 files changed, 1 insertions, 1 deletions
diff --git a/asn1/pres/pres.cnf b/asn1/pres/pres.cnf
index 6daf4a42d2..120e85362f 100644
--- a/asn1/pres/pres.cnf
+++ b/asn1/pres/pres.cnf
@@ -36,7 +36,7 @@ CPR-PPDU/normal-mode-parameters/provider-reason cPR_PPDU__provider-reason
tvbuff_t *next_tvb;
char *oid;
- oid=find_oid_by_ctx_id(pinfo, presentation_context_identifier);
+ oid=find_oid_by_pres_ctx_id(pinfo, presentation_context_identifier);
if(oid){
next_tvb = tvb_new_subset(tvb, offset, -1, -1);
call_ber_oid_callback(oid, next_tvb, offset, pinfo, global_tree);