1
0
mirror of https://github.com/MariaDB/server.git synced 2025-12-24 11:21:21 +03:00

Fix for IO_CACHE.

Portability fixes.
This commit is contained in:
monty@hundin.mysql.fi
2001-11-28 03:47:15 +02:00
parent 3c057478c2
commit 5fedd2dda7
9 changed files with 166 additions and 133 deletions

View File

@@ -779,10 +779,10 @@ int wild_compare(const char *str,const char *str_end,
{
while (str != str_end && *str != cmp)
str++;
if (str++ == str_end)
if (str++ == str_end)
{
DBUG_RETURN(-1)
};
DBUG_RETURN(-1);
}
{
int tmp=wild_compare(str,str_end,wildstr,wildend,escape);
if (tmp <= 0)