summaryrefslogtreecommitdiff
path: root/client
diff options
context:
space:
mode:
authorunknown <holyfoot@deer.(none)>2006-05-02 08:59:49 +0500
committerunknown <holyfoot@deer.(none)>2006-05-02 08:59:49 +0500
commit521d6b3dab546f2d84dc6347afae5a115999b0bc (patch)
treef8f6064e15627a90b022e4e96073cdc990a11c60 /client
parentd91a45af4d849e74af7e84061c214beda5e13286 (diff)
downloadmariadb-git-521d6b3dab546f2d84dc6347afae5a115999b0bc.tar.gz
Win build fix
Diffstat (limited to 'client')
-rw-r--r--client/mysql_upgrade.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/mysql_upgrade.c b/client/mysql_upgrade.c
index 551be79fc99..3288b627554 100644
--- a/client/mysql_upgrade.c
+++ b/client/mysql_upgrade.c
@@ -307,7 +307,7 @@ int main(int argc, char **argv)
b_read= my_read(check_file, chf_buffer, sizeof(chf_buffer)-1, MYF(0));
chf_buffer[b_read]= 0;
my_close(check_file, MYF(0));
- if (!strcmp(chf_buffer, VERSION))
+ if (!strcmp(chf_buffer, MYSQL_SERVER_VERSION))
{
if (opt_verbose)
puts("mysql_upgrade already done for this version");