From 3357748aad048264972da38d5a7b644d30f631ec Mon Sep 17 00:00:00 2001 From: Massimiliano Pinto Date: Fri, 2 Aug 2013 10:00:56 +0200 Subject: [PATCH] Some typos fixed --- server/MaxScale.cnf | 6 +++--- server/modules/protocol/mysql_client.c | 4 ++-- server/modules/routing/testroute.c | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/server/MaxScale.cnf b/server/MaxScale.cnf index 8f1406253..048c5b2f2 100644 --- a/server/MaxScale.cnf +++ b/server/MaxScale.cnf @@ -3,15 +3,15 @@ # # # -# A genererate configuration session +# Configuration session # Valid options are: # threads= [gateway] threads=1 -# A series service definition -# Valid option are +# A series of service definition +# Valid options are # router= # servers=,,... # user= diff --git a/server/modules/protocol/mysql_client.c b/server/modules/protocol/mysql_client.c index 195a72275..db44ff8ca 100644 --- a/server/modules/protocol/mysql_client.c +++ b/server/modules/protocol/mysql_client.c @@ -81,7 +81,7 @@ version() void ModuleInit() { - fprintf(stderr, "Initial MySQL Client Protcol module.\n"); + fprintf(stderr, "Initialise MySQL Client Protocol module.\n"); } /** @@ -396,7 +396,7 @@ static int gw_mysql_do_authentication(DCB *dcb, GWBUF *queue) { free(auth_token); if (auth_ret != 0) { - fprintf(stderr, "<<< CLIENT AUTH FAILEDi for user [%s]\n", username); + fprintf(stderr, "<<< CLIENT AUTH FAILED for user [%s]\n", username); } return auth_ret; diff --git a/server/modules/routing/testroute.c b/server/modules/routing/testroute.c index d276ee163..21324ba68 100644 --- a/server/modules/routing/testroute.c +++ b/server/modules/routing/testroute.c @@ -60,7 +60,7 @@ ModuleInit() ROUTER_OBJECT * GetModuleObject() { - fprintf(stderr, "Returing test router module object.\n"); + fprintf(stderr, "Returning test router module object.\n"); return &MyObject; }