aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--rcynic/rcynic.c13
1 files changed, 10 insertions, 3 deletions
diff --git a/rcynic/rcynic.c b/rcynic/rcynic.c
index 5eece8b2..ccf91d6b 100644
--- a/rcynic/rcynic.c
+++ b/rcynic/rcynic.c
@@ -30,9 +30,6 @@
/* $Id$ */
-#warning Clean up AVL_PARANOIA junk as soon as we know new code works properly
-#define AVL_PARANOIA 1
-
/**
* @mainpage
*
@@ -85,6 +82,16 @@
#include "defstack.h"
#include "defasn1.h"
+/*
+ * Whether to run the old slow STACK-based validation_status lookup in
+ * parallel to the new faster AVL-based mechanism. The code
+ * controlled by this option will probably go away soon, it's just here
+ * in case we run into trouble while testing the new code.
+ */
+#ifndef AVL_PARANOIA
+#define AVL_PARANOIA 0
+#endif
+
#if !defined(FILENAME_MAX) && defined(PATH_MAX) && PATH_MAX > 1024
#define FILENAME_MAX PATH_MAX
#elif !defined(FILENAME_MAX)