From bb65222e89858bda4bafcd8fb0cceae3ee21abde Mon Sep 17 00:00:00 2001 From: MassimilianoPinto Date: Wed, 1 Apr 2015 16:56:29 +0200 Subject: [PATCH] Fixed wrong var name Fixed wrong var name detection --- server/modules/routing/binlog/blr_slave.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/modules/routing/binlog/blr_slave.c b/server/modules/routing/binlog/blr_slave.c index 9f5c5eb09..3608d0c0c 100644 --- a/server/modules/routing/binlog/blr_slave.c +++ b/server/modules/routing/binlog/blr_slave.c @@ -376,7 +376,7 @@ int query_len; word = strtok_r(NULL, sep, &brkb); if (word && (strcasecmp(word, "'none'") == 0)) slave->nocrc = 1; - else if (word && (strcasecmp(word, "@@global.biglog_checksum") == 0)) + else if (word && (strcasecmp(word, "@@global.binlog_checksum") == 0)) slave->nocrc = !router->master_chksum; else slave->nocrc = 0;