aboutsummaryrefslogtreecommitdiffstats
path: root/asn1/rtse
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2005-10-18 00:07:49 +0000
committerGuy Harris <guy@alum.mit.edu>2005-10-18 00:07:49 +0000
commit6e759b47f217012eeb590c739097c5d788b9d45c (patch)
treeeebecf5d8d068f524b6b45c6f63e51b48da35b03 /asn1/rtse
parent7f33a96ea9ae79deedb6ee831871bb651484d211 (diff)
.FN_BODY text gets printf-style expansion done on it, so format strings
in the code have to have %'s escaped. Do so. svn path=/trunk/; revision=16260
Diffstat (limited to 'asn1/rtse')
-rw-r--r--asn1/rtse/rtse.cnf2
1 files changed, 1 insertions, 1 deletions
diff --git a/asn1/rtse/rtse.cnf b/asn1/rtse/rtse.cnf
index f84391e0ec..1581362bc3 100644
--- a/asn1/rtse/rtse.cnf
+++ b/asn1/rtse/rtse.cnf
@@ -100,7 +100,7 @@ EXTERNAL
/* look up the indirect reference */
if((oid = find_oid_by_pres_ctx_id(pinfo, indir_ref)) != NULL) {
- g_snprintf(object_identifier_id, MAX_OID_STR_LEN, "%s", oid);
+ g_snprintf(object_identifier_id, MAX_OID_STR_LEN, "%%s", oid);
}