diff options
author | unknown <msvensson@neptunus.(none)> | 2006-03-07 08:57:57 +0100 |
---|---|---|
committer | unknown <msvensson@neptunus.(none)> | 2006-03-07 08:57:57 +0100 |
commit | 07d36fb99a4b9419f60d4c09efc7e6c3fde0051c (patch) | |
tree | cf11fba9fdea767915c967d3e2dfc619f08c2a19 /client | |
parent | 60ee2bbecb795abba4e19aca3908a3ea01932025 (diff) | |
download | mariadb-git-07d36fb99a4b9419f60d4c09efc7e6c3fde0051c.tar.gz |
Enable ifdef for windows specific functions
Diffstat (limited to 'client')
-rw-r--r-- | client/mysqltest.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/client/mysqltest.c b/client/mysqltest.c index 05304c1dd6d..770ca7e2d2a 100644 --- a/client/mysqltest.c +++ b/client/mysqltest.c @@ -1048,7 +1048,7 @@ int do_source(struct st_query *query) return open_file(name); } -//#ifdef __WIN__ +#ifdef __WIN__ /* Variables used for temuprary sh files used for emulating Unix on Windows */ char tmp_sh_name[64], tmp_sh_cmd[70]; @@ -1064,7 +1064,7 @@ static void free_tmp_sh_file() { my_delete(tmp_sh_name, MYF(0)); } - +#endif FILE* my_popen(DYNAMIC_STRING* ds_cmd, const char* mode) { |