Some typos fixed

This commit is contained in:
Massimiliano Pinto
2013-08-02 10:00:56 +02:00
parent 9305cf0f9f
commit 3357748aad
3 changed files with 6 additions and 6 deletions

View File

@ -3,15 +3,15 @@
# #
# #
# #
# A genererate configuration session # Configuration session
# Valid options are: # Valid options are:
# threads=<number of epoll threads> # threads=<number of epoll threads>
[gateway] [gateway]
threads=1 threads=1
# A series service definition # A series of service definition
# Valid option are # Valid options are
# router=<name of router module> # router=<name of router module>
# servers=<server name>,<server name>,... # servers=<server name>,<server name>,...
# user=<User to fetch password inforamtion with> # user=<User to fetch password inforamtion with>

View File

@ -81,7 +81,7 @@ version()
void void
ModuleInit() 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); free(auth_token);
if (auth_ret != 0) { 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; return auth_ret;

View File

@ -60,7 +60,7 @@ ModuleInit()
ROUTER_OBJECT * ROUTER_OBJECT *
GetModuleObject() GetModuleObject()
{ {
fprintf(stderr, "Returing test router module object.\n"); fprintf(stderr, "Returning test router module object.\n");
return &MyObject; return &MyObject;
} }