diff options
author | monty@hundin.mysql.fi <> | 2001-10-31 18:27:49 +0200 |
---|---|---|
committer | monty@hundin.mysql.fi <> | 2001-10-31 18:27:49 +0200 |
commit | d89690e606d38e5b0f1d82117cd26a5264325088 (patch) | |
tree | 603547f133fd6eaa7de511aeb171eb8224e0d208 /mysys/my_tempnam.c | |
parent | c9e4b2aab32a5d27336a4a2595ee20b3c4ff019d (diff) | |
download | mariadb-git-d89690e606d38e5b0f1d82117cd26a5264325088.tar.gz |
Portability fixes
Fix for consistent 0000-00-00 date handling
Close + open binary logs on flush tables
Fix for AVG() in HAVING.
Diffstat (limited to 'mysys/my_tempnam.c')
-rw-r--r-- | mysys/my_tempnam.c | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/mysys/my_tempnam.c b/mysys/my_tempnam.c index 6b7ac099581..fdaf018af0d 100644 --- a/mysys/my_tempnam.c +++ b/mysys/my_tempnam.c @@ -15,6 +15,13 @@ Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA */ +/* + This function is only used by some old ISAM code. + When we remove ISAM support from MySQL, we should also delete this file + + One should instead use the functions in mf_tempfile.c +*/ + #include "mysys_priv.h" #include <m_string.h> #include "my_static.h" @@ -103,13 +110,13 @@ my_string my_tempnam(const char *dir, const char *pfx, old_env=(char**)environ; if (dir) { /* Don't use TMPDIR if dir is given */ - environ=(const char**)temp_env; + environ=(const char**)temp_env; /* May give warning */ temp_env[0]=0; } #endif res=tempnam((char*) dir,(my_string) pfx); /* Use stand. dir with prefix */ #ifndef OS2 - environ=(const char**)old_env; + environ=(const char**)old_env; /* May give warning */ #endif if (!res) DBUG_PRINT("error",("Got error: %d from tempnam",errno)); |