aboutsummaryrefslogtreecommitdiffstats
path: root/libasn1fix
diff options
context:
space:
mode:
authorvlm <vlm@59561ff5-6e30-0410-9f3c-9617f08c8826>2005-03-18 04:26:12 +0000
committervlm <vlm@59561ff5-6e30-0410-9f3c-9617f08c8826>2005-03-18 04:26:12 +0000
commitf1b8af6265f07ecc262551153d53840a321875fb (patch)
tree7b6783648e23bf625a18c022c4a0c93641d29f5c /libasn1fix
parent35fcb7cfe30d73b226797bf2f8b4674cfd9a2a05 (diff)
better printing
git-svn-id: https://asn1c.svn.sourceforge.net/svnroot/asn1c/trunk@811 59561ff5-6e30-0410-9f3c-9617f08c8826
Diffstat (limited to 'libasn1fix')
-rw-r--r--libasn1fix/asn1fix.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/libasn1fix/asn1fix.c b/libasn1fix/asn1fix.c
index f5489ed5..6549a2a6 100644
--- a/libasn1fix/asn1fix.c
+++ b/libasn1fix/asn1fix.c
@@ -123,13 +123,12 @@ asn1f_fix_module__phase_1(arg_t *arg) {
/* Compare only the OID. */
if(asn1p_oid_compare(omod->module_oid,
arg->mod->module_oid) == 0) {
- FATAL("ASN.1 module %s from %s "
+ FATAL("ASN.1 module %s in %s "
"has the same OBJECT IDENTIFIER"
- " as module %s from %s",
- arg->mod->Identifier,
- arg->mod->source_file_name,
+ " as module %s",
omod->Identifier,
- omod->source_file_name
+ omod->source_file_name,
+ arg->mod->Identifier
);
RET2RVAL(-1, rvalue);
} else if(sameNames) {