]> git.sur5r.net Git - bacula/bacula/commitdiff
Rework debug flags a bit
authorKern Sibbald <kern@sibbald.com>
Sat, 31 Mar 2007 11:30:51 +0000 (11:30 +0000)
committerKern Sibbald <kern@sibbald.com>
Sat, 31 Mar 2007 11:30:51 +0000 (11:30 +0000)
git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@4471 91ce42f0-d328-0410-95d8-f526ca767f89

bacula/src/version.h

index a3763a80d3270f169debd02a414cf7ad3c13e78b..2380732d618c44f8dd72a6d1b102ea5c4bd8a319 100644 (file)
 #undef  DEBUG
 #define DEBUG 1
 #define TRACEBACK 1
-#define SMCHECK
 #define TRACE_FILE 1
 
 /* If this is set stdout will not be closed on startup */
 #define DEVELOPER 1
 
+/*
+ * SMCHECK does orphaned buffer checking (memory leaks)
+ *  it can always be turned on, but has some minor performance
+ *  penalties.
+ */
+#ifdef DEVELOPER
+#define SMCHECK
+#endif
+
+/*
+ * This should always be on. It enables data encryption code 
+ *  providing it is configured.
+ */
 #define DATA_ENCRYPTION 1
 
+/*
+ * This uses a Bacula specific bsnprintf rather than the sys lib
+ *  version because it is much more secure. It should always be 
+ *  on.
+ */
 #define USE_BSNPRINTF 1
 
-/* Turn on the following flag to enable batch attribute inserts
+/*
+ * Turn on the following flag to enable batch attribute inserts
  *  in the catalog.  This gives a large speedup.
  */
 #define HAVE_BATCH_FILE_INSERT 1