Fix old header names in modules

Some of the modules still used the gw_authenticator.h name.
This commit is contained in:
Markus Mäkelä 2017-01-20 16:51:49 +02:00
parent 4ee7f4c91d
commit 468411250d
6 changed files with 7 additions and 7 deletions

View File

@ -4,7 +4,7 @@ This document describes the modular authentication in MaxScale. It contains
protocol specific information on authentication and how it is handled in
MaxScale.
The constants described in this document are defined in the gw_authenticator.h
The constants described in this document are defined in the authenticator.h
header unless otherwise mentioned.
## Authenticator initialization

View File

@ -13,7 +13,7 @@
*/
/**
* @file gw_authenticator.h
* @file authenticator.h
*
* The authenticator module interface definitions for MaxScale
*

View File

@ -27,7 +27,7 @@
#define MXS_MODULE_NAME "CDCPlainAuth"
#include <maxscale/gw_authenticator.h>
#include <maxscale/authenticator.h>
#include <sys/stat.h>
#include <cdc.h>
#include <maxscale/alloc.h>

View File

@ -13,7 +13,7 @@
#define MXS_MODULE_NAME "GSSAPIAuth"
#include <maxscale/gw_authenticator.h>
#include <maxscale/authenticator.h>
#include <maxscale/alloc.h>
#include <maxscale/dcb.h>
#include <maxscale/log_manager.h>

View File

@ -13,7 +13,7 @@
#define MXS_MODULE_NAME "GSSAPIBackendAuth"
#include <maxscale/gw_authenticator.h>
#include <maxscale/authenticator.h>
#include <maxscale/alloc.h>
#include <maxscale/dcb.h>
#include <maxscale/log_manager.h>

View File

@ -83,7 +83,7 @@ void auth_backend_destroy(void *data)
* @param dcb Request handler DCB connected to the client
* @param buffer Buffer containing data from client
* @return Authentication status
* @see gw_quthenticator.h
* @see authenticator.h
* @see https://dev.mysql.com/doc/internals/en/client-server-protocol.html
*/
static int auth_backend_extract(DCB *dcb, GWBUF *buf)
@ -119,7 +119,7 @@ static int auth_backend_extract(DCB *dcb, GWBUF *buf)
*
* @param dcb Backend DCB
* @return Authentication status
* @see gw_authenticator.h
* @see authenticator.h
*/
static int auth_backend_authenticate(DCB *dcb)
{