Commit 8ec4020e authored by unknown's avatar unknown

Use char as datatype for the byte that are read with my_fgetc, fixes problem with

mysqltest.test on Solaris and Mac. write_file produced nice files with all zeroes.


client/mysqltest.c:
  Use char as datatype for the byte that are read with my_fgetc
mysql-test/mysql-test-run.pl:
  Fix typo, add missing $
parent b0a4ec85
......@@ -1810,7 +1810,7 @@ void my_ungetc(int c)
void read_until_delimiter(DYNAMIC_STRING *ds,
DYNAMIC_STRING *ds_delimiter)
{
int c;
char c;
DBUG_ENTER("read_until_delimiter");
DBUG_PRINT("enter", ("delimiter: %s, length: %d",
ds_delimiter->str, ds_delimiter->length));
......
......@@ -1421,7 +1421,7 @@ sub executable_setup () {
{
# Skip looking for exe_mysql_client_test as its not built by default
# in 4.1 for windows.
exe_mysql_client_test= "unavailable";
$exe_mysql_client_test= "unavailable";
}
else
{
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment