From c1981b4dc61263a72fa9bd9f8c9f19d94b703464 Mon Sep 17 00:00:00 2001 From: Massimiliano Pinto Date: Thu, 27 Jun 2013 00:38:55 +0200 Subject: [PATCH] Removed othere fprintf --- modules/protocol/mysql_backend.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/modules/protocol/mysql_backend.c b/modules/protocol/mysql_backend.c index b4159205d..3e96f701e 100644 --- a/modules/protocol/mysql_backend.c +++ b/modules/protocol/mysql_backend.c @@ -276,10 +276,8 @@ static int gw_create_backend_connection(DCB *backend, SERVER *server, SESSION *s ptr_proto = (MySQLProtocol *)backend->protocol; s_data = (MYSQL_session *)session->client->data; - - fprintf(stderr, "HERE before connect, s_data is [%p]\n", s_data); - - fprintf(stderr, "HERE before connect, username is [%s]\n", s_data->user); +// fprintf(stderr, "HERE before connect, s_data is [%p]\n", s_data); +// fprintf(stderr, "HERE before connect, username is [%s]\n", s_data->user); // this is blocking until auth done if (gw_mysql_connect(server->name, server->port, s_data->db, s_data->user, s_data->client_sha1, backend->protocol) == 0) {