diff options
author | unknown <msvensson@shellback.(none)> | 2006-10-14 17:09:06 +0200 |
---|---|---|
committer | unknown <msvensson@shellback.(none)> | 2006-10-14 17:09:06 +0200 |
commit | 8ec4020e2534e7b26721bb07c89d77eb11482c77 (patch) | |
tree | ed75235379890e734a6c2f30206aec0400b0e838 /mysql-test | |
parent | b0a4ec859faaf985d9e28fa443af9316729843be (diff) | |
download | mariadb-git-8ec4020e2534e7b26721bb07c89d77eb11482c77.tar.gz |
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 $
Diffstat (limited to 'mysql-test')
-rwxr-xr-x | mysql-test/mysql-test-run.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/mysql-test-run.pl b/mysql-test/mysql-test-run.pl index 79f01c3cb68..35782733b20 100755 --- a/mysql-test/mysql-test-run.pl +++ b/mysql-test/mysql-test-run.pl @@ -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 { |