From 8b6c571562bd646b858bf8058394e8cc9579ef99 Mon Sep 17 00:00:00 2001 From: Jeremy Harris Date: Sat, 14 Oct 2017 15:37:01 +0100 Subject: [PATCH] coding standards --- src/src/lookups/mysql.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/src/lookups/mysql.c b/src/src/lookups/mysql.c index 0d3d92aa8..16972b579 100644 --- a/src/src/lookups/mysql.c +++ b/src/src/lookups/mysql.c @@ -19,12 +19,12 @@ and *_BASE_STR (char*). It's a bit of guesswork. Especially for mariadb with versions before 10.2, as they do not define there there specific symbols. */ -// Newer (>= 10.2) MariaDB +/* Newer (>= 10.2) MariaDB */ #if defined MARIADB_VERSION_ID #define EXIM_MxSQL_VERSION_ID MARIADB_VERSION_ID -// MySQL defines MYSQL_VERSION_ID, and MariaDB does so -// https://dev.mysql.com/doc/refman/5.7/en/c-api-server-client-versions.html +/* MySQL defines MYSQL_VERSION_ID, and MariaDB does so */ +/* https://dev.mysql.com/doc/refman/5.7/en/c-api-server-client-versions.html */ #elif defined LIBMYSQL_VERSION_ID #define EXIM_MxSQL_VERSION_ID LIBMYSQL_VERSION_ID #elif defined MYSQL_VERSION_ID @@ -34,11 +34,11 @@ with versions before 10.2, as they do not define there there specific symbols. #define EXIM_MYSQL_VERSION_ID 0 #endif -// Newer (>= 10.2) MariaDB +/* Newer (>= 10.2) MariaDB */ #ifdef MARIADB_CLIENT_VERSION_STR #define EXIM_MxSQL_VERSION_STR MARIADB_CLIENT_VERSION_STR -// Mysql uses MYSQL_SERVER_VERSION +/* Mysql uses MYSQL_SERVER_VERSION */ #elif defined LIBMYSQL_VERSION #define EXIM_MxSQL_VERSION_STR LIBMYSQL_VERSION #elif defined MYSQL_SERVER_VERSION -- 2.30.2