summaryrefslogtreecommitdiff
path: root/asn1/cmip
diff options
context:
space:
mode:
authorRonnie Sahlberg <ronnie_sahlberg@ozemail.com.au>2005-06-30 07:48:25 +0000
committerRonnie Sahlberg <ronnie_sahlberg@ozemail.com.au>2005-06-30 07:48:25 +0000
commit19409dc44f3b274bea27fb405c09d2c65e282fc9 (patch)
tree4ce9655e799a2889b2fdbab001c7084b5f572289 /asn1/cmip
parenta60bb6ada973249b4f6b251bd3b6af5d97d3ff8d (diff)
downloadwireshark-19409dc44f3b274bea27fb405c09d2c65e282fc9.tar.gz
fix a bug in the conformance file for CMIP to make it compile again
(semi-recent changes to asn2eth and PARAM handling makes us have to use double %% in some BODY statements) at the same time, regenerate it so it also benefit from bugfixes to handling of indefinite length svn path=/trunk/; revision=14823
Diffstat (limited to 'asn1/cmip')
-rw-r--r--asn1/cmip/cmip.cnf4
1 files changed, 2 insertions, 2 deletions
diff --git a/asn1/cmip/cmip.cnf b/asn1/cmip/cmip.cnf
index a395e31620..b421c93454 100644
--- a/asn1/cmip/cmip.cnf
+++ b/asn1/cmip/cmip.cnf
@@ -40,14 +40,14 @@ InvokeIDType
guint32 value;
offset = dissect_ber_integer(implicit_tag, pinfo, tree, tvb, offset, hf_index, &value);
if(check_col(pinfo->cinfo, COL_INFO)){
- col_append_fstr(pinfo->cinfo, COL_INFO, " AbortSource:%s", val_to_str(value, CMIPAbortSource_vals, " Unknown AbortSource:%d"));
+ col_append_fstr(pinfo->cinfo, COL_INFO, " AbortSource:%s", val_to_str(value, cmip_CMIPAbortSource_vals, " Unknown AbortSource:%d"));
}
#.END
#.FN_BODY Opcode
offset = dissect_ber_integer(implicit_tag, pinfo, tree, tvb, offset, hf_index, &opcode);
if(check_col(pinfo->cinfo, COL_INFO)){
- col_prepend_fstr(pinfo->cinfo, COL_INFO, "%s", val_to_str(opcode, Opcode_vals, " Unknown Opcode:%d"));
+ col_prepend_fstr(pinfo->cinfo, COL_INFO, "%%s", val_to_str(opcode, cmip_Opcode_vals, " Unknown Opcode:%%d"));
}
#.END