commit b73a7c5da48e09bd39c1d7c1dabec269dbacd1c8
parent 8649948a4d1b4fbb52b2f55fe519dab36d4731ea
Author: Christian Grothoff <christian@grothoff.org>
Date: Wed, 11 Jan 2023 17:35:34 +0100
Mysql: version check was wrong
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/include/gnunet_mysql_compat.h b/src/include/gnunet_mysql_compat.h
@@ -42,7 +42,7 @@ extern "C"
#endif
#ifndef LIBMARIADB
-#if MYSQL_VERSION_ID < 80000
+#if MYSQL_VERSION_ID >= 80000
#define MYSQL_BOOL bool
#else
#define MYSQL_BOOL my_bool /* MySQL < 8 wants this */