From 28ed7c0c9f6ea662a4ae4047eed0b9776471e3e3 Mon Sep 17 00:00:00 2001 From: "bar@mysql.com" <> Date: Thu, 12 Jan 2006 11:41:57 +0400 Subject: [PATCH] sql_table.cc: Typo fix. Thanks Serg for noticing this. --- sql/sql_table.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sql/sql_table.cc b/sql/sql_table.cc index dd91d7ecd0f..d521f40c287 100644 --- a/sql/sql_table.cc +++ b/sql/sql_table.cc @@ -126,8 +126,8 @@ uint filename_to_tablename(const char *from, char *to, uint to_length) uint tablename_to_filename(const char *from, char *to, uint to_length) { uint errors; - if (from[0] && !strncmp(from, MYSQL50_TABLE_NAME_PREFIX, - MYSQL50_TABLE_NAME_PREFIX_LENGTH)) + if (from[0] == '#' && !strncmp(from, MYSQL50_TABLE_NAME_PREFIX, + MYSQL50_TABLE_NAME_PREFIX_LENGTH)) return my_snprintf(to, to_length, "%s", from + 9); return strconvert(system_charset_info, from, &my_charset_filename, to, to_length, &errors);