diff options
author | Jeremy Harris <jgh146exb@wizmail.org> | 2017-10-14 15:37:01 +0100 |
---|---|---|
committer | Jeremy Harris <jgh146exb@wizmail.org> | 2017-10-14 15:37:01 +0100 |
commit | 8b6c571562bd646b858bf8058394e8cc9579ef99 (patch) | |
tree | 7b726627601a14c8338cda5f1d5478c5fb69c4e6 | |
parent | acec9514b1006e352ef283f205ecec75a9b6ff0d (diff) |
coding standards
-rw-r--r-- | src/src/lookups/mysql.c | 10 |
1 files 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 |