summaryrefslogtreecommitdiff
path: root/sql/table.cc
diff options
context:
space:
mode:
authorunknown <serg@serg.mysql.com>2001-03-21 17:09:43 +0100
committerunknown <serg@serg.mysql.com>2001-03-21 17:09:43 +0100
commit9914932787833bf1f4a65464584c31824965eb17 (patch)
tree31fe680a9aab86de22e1291297658a7e3fea1462 /sql/table.cc
parentd1782bea92ebf698cdcf898007f3b015ba502493 (diff)
downloadmariadb-git-9914932787833bf1f4a65464584c31824965eb17.tar.gz
bug with mysql_change_db() fixed
BitKeeper/etc/logging_ok: Logging to logging@openlogging.org accepted
Diffstat (limited to 'sql/table.cc')
-rw-r--r--sql/table.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/table.cc b/sql/table.cc
index a6d524840d9..eed4170c14a 100644
--- a/sql/table.cc
+++ b/sql/table.cc
@@ -1052,7 +1052,7 @@ bool check_db_name(const char *name)
}
}
#endif
- if (*name == '/' || *name == FN_LIBCHAR)
+ if (*name == '/' || *name == FN_LIBCHAR || *name == FN_EXTCHAR)
return 1;
name++;
}