@miconda commented on this pull request.
@@ -29,6 +29,12 @@
#include "redis_dbase.h" #include "redis_table.h"
+#ifdef WITH_SSL +int db_redis_opt_tls = 0; +char *ca_path = 0; +#endif +char *db_pass = 0;
Add module name prefix to the global variables ca_path and db_pass, like it is db_redis_opt_tls. The are also declared with extern and being prefixed reduce the chances of conflicts with similar variables (e.g., ca_path can be quite common with some libs).