]> granicus.if.org Git - file/commitdiff
only define strings for debugging
authorChristos Zoulas <christos@zoulas.com>
Sun, 17 Apr 2016 19:44:45 +0000 (19:44 +0000)
committerChristos Zoulas <christos@zoulas.com>
Sun, 17 Apr 2016 19:44:45 +0000 (19:44 +0000)
src/der.c

index e003795ffdcd66303e25c284be01c3daef5ad93f..73c0072b24eec0ab0d5edd364b1445686b3ccc4e 100644 (file)
--- a/src/der.c
+++ b/src/der.c
@@ -35,7 +35,7 @@
 #include "file.h"
 
 #ifndef lint
-FILE_RCSID("@(#)$File: der.c,v 1.4 2016/03/21 23:04:40 christos Exp $")
+FILE_RCSID("@(#)$File: der.c,v 1.5 2016/04/17 19:44:45 christos Exp $")
 #endif
 #endif
 
@@ -61,11 +61,15 @@ FILE_RCSID("@(#)$File: der.c,v 1.4 2016/03/21 23:04:40 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