From d83fae9df7d23abf8511b7a9c4f4d412684fd04b Mon Sep 17 00:00:00 2001
From: Lev Walkin <vlm@lionet.info>
Date: Thu, 12 Aug 2004 07:56:02 +0000
Subject: [PATCH] ASN_ERRLOG api changed

---
 libasn1compiler/asn1c_C.c | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/libasn1compiler/asn1c_C.c b/libasn1compiler/asn1c_C.c
index 5b9bf7c9..197ce1f9 100644
--- a/libasn1compiler/asn1c_C.c
+++ b/libasn1compiler/asn1c_C.c
@@ -1408,7 +1408,8 @@ emit_constraint_checking_code(arg_t *arg) {
 
 	OUT("if(!sptr) {\n");
 	INDENT(+1);
-		OUT("_ASN_ERRLOG(\"%%s: value not given\", td->name);\n");
+		OUT("_ASN_ERRLOG(app_errlog, app_key,\n");
+		OUT("\t\"%%s: value not given\", td->name);\n");
 		OUT("return -1;\n");
 	INDENT(-1);
 	OUT("}\n");
@@ -1426,7 +1427,8 @@ emit_constraint_checking_code(arg_t *arg) {
 	INDENTED(OUT("/* Constraint check succeeded */\n"));
 	OUT("} else {\n");
 	INDENT(+1);
-		OUT("_ASN_ERRLOG(\"%%s: constraint failed\", td->name);\n");
+		OUT("_ASN_ERRLOG(app_errlog, app_key,\n");
+		OUT("\t\"%%s: constraint failed\", td->name);\n");
 		OUT("return -1;\n");
 	INDENT(-1);
 	OUT("}\n");
@@ -1979,8 +1981,8 @@ emit_value_determination_code(arg_t *arg) {
 		} else {
 			OUT("if(asn1_INTEGER2long(st, &value)) {\n");
 			INDENT(+1);
-			OUT("_ASN_ERRLOG(\"%%s: value too large\", "
-				"td->name);\n");
+			OUT("_ASN_ERRLOG(app_errlog, app_key,\n");
+			OUT("\t\"%%s: value too large\", td->name);\n");
 			OUT("return -1;\n");
 			INDENT(-1);
 			OUT("}\n");
-- 
GitLab