1
0
mirror of https://github.com/MariaDB/server.git synced 2025-09-02 09:41:40 +03:00

Do not use C++ style comments (//) in C source (breaks compilation on aix52).

This commit is contained in:
unknown
2006-01-02 02:45:26 +01:00
parent a3e0141898
commit 67a6dd9fb9

View File

@@ -3484,7 +3484,7 @@ row_is_mysql_tmp_table_name(
const char* name) /* in: table name in the form
'database/tablename' */
{
//return(strstr(name, "/#sql") != NULL);
/* return(strstr(name, "/#sql") != NULL); */
return(strstr(name, "/@0023sql") != NULL);
}