From 13739eae444f3c2693122b318c212d8190f72665 Mon Sep 17 00:00:00 2001 From: Massimiliano Pinto Date: Tue, 17 Dec 2013 18:24:26 +0100 Subject: [PATCH] Removed a failed auth message on stderr --- server/modules/protocol/mysql_client.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/server/modules/protocol/mysql_client.c b/server/modules/protocol/mysql_client.c index 6ea27410d..c62bee8a2 100644 --- a/server/modules/protocol/mysql_client.c +++ b/server/modules/protocol/mysql_client.c @@ -419,10 +419,11 @@ static int gw_mysql_do_authentication(DCB *dcb, GWBUF *queue) { // let's free the auth_token now if (auth_token) free(auth_token); - +/* if (auth_ret != 0) { fprintf(stderr, "<<< CLIENT AUTH FAILED for user [%s]\n", username); } +*/ return auth_ret; }