From 0f755adc78ee70a51804ce609fd50ce9639eddc1 Mon Sep 17 00:00:00 2001 From: Esa Korhonen Date: Fri, 30 Nov 2018 17:04:57 +0200 Subject: [PATCH] MySQLAuth header to .hh --- server/modules/authenticator/MySQLAuth/dbusers.cc | 2 +- .../modules/authenticator/MySQLAuth/mysql_auth.cc | 2 +- .../MySQLAuth/{mysql_auth.h => mysql_auth.hh} | 14 ++------------ 3 files changed, 4 insertions(+), 14 deletions(-) rename server/modules/authenticator/MySQLAuth/{mysql_auth.h => mysql_auth.hh} (96%) diff --git a/server/modules/authenticator/MySQLAuth/dbusers.cc b/server/modules/authenticator/MySQLAuth/dbusers.cc index 8d7fd30c1..001ecee23 100644 --- a/server/modules/authenticator/MySQLAuth/dbusers.cc +++ b/server/modules/authenticator/MySQLAuth/dbusers.cc @@ -15,7 +15,7 @@ * Loading MySQL users from a MySQL backend server */ -#include "mysql_auth.h" +#include "mysql_auth.hh" #include #include diff --git a/server/modules/authenticator/MySQLAuth/mysql_auth.cc b/server/modules/authenticator/MySQLAuth/mysql_auth.cc index 21b5470ef..d959528e9 100644 --- a/server/modules/authenticator/MySQLAuth/mysql_auth.cc +++ b/server/modules/authenticator/MySQLAuth/mysql_auth.cc @@ -25,7 +25,7 @@ * @endverbatim */ -#include "mysql_auth.h" +#include "mysql_auth.hh" #include #include diff --git a/server/modules/authenticator/MySQLAuth/mysql_auth.h b/server/modules/authenticator/MySQLAuth/mysql_auth.hh similarity index 96% rename from server/modules/authenticator/MySQLAuth/mysql_auth.h rename to server/modules/authenticator/MySQLAuth/mysql_auth.hh index 41946c7f6..c4f630f55 100644 --- a/server/modules/authenticator/MySQLAuth/mysql_auth.h +++ b/server/modules/authenticator/MySQLAuth/mysql_auth.hh @@ -12,26 +12,16 @@ */ #pragma once -/* - * @verbatim - * Revision History - * - * Date Who Description - * 02/02/2016 Martin Brampton Initial implementation - * - * @endverbatim - */ - #define MXS_MODULE_NAME "MySQLAuth" -#include +#include #include #include #include #include -#include +#include #include #include #include