From 89fb0ca30034d2f01856ca24e1798b18a99b38ee Mon Sep 17 00:00:00 2001 From: Christos Zoulas Date: Sun, 17 Apr 2016 19:44:45 +0000 Subject: [PATCH] only define strings for debugging --- src/der.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/der.c b/src/der.c index 134712c8..84793e54 100644 --- a/src/der.c +++ b/src/der.c @@ -35,7 +35,7 @@ #include "file.h" #ifndef lint -FILE_RCSID("@(#)$File: der.c,v 1.3 2016/03/21 17:41:14 christos Exp $") +FILE_RCSID("@(#)$File: der.c,v 1.4 2016/03/21 23:04:40 christos Exp $") #endif #endif @@ -61,11 +61,15 @@ FILE_RCSID("@(#)$File: der.c,v 1.3 2016/03/21 17:41:14 christos Exp $") #define DER_CLASS_APPLICATION 1 #define DER_CLASS_CONTEXT 2 #define DER_CLASS_PRIVATE 3 +#ifdef DEBUG_DER static const char der_class[] = "UACP"; +#endif #define DER_TYPE_PRIMITIVE 0 #define DER_TYPE_CONSTRUCTED 1 +#ifdef DEBUG_DER static const char der_type[] = "PC"; +#endif #define DER_TAG_EOC 0x00 #define DER_TAG_BOOLEAN 0x01 -- 2.50.1