diff options
author | serg@serg.mylan <> | 2004-02-26 00:25:35 +0100 |
---|---|---|
committer | serg@serg.mylan <> | 2004-02-26 00:25:35 +0100 |
commit | e58f1ca7f8a5b149320d781c3dc4abb9b3a566c2 (patch) | |
tree | c2f05b905eb40df6b4b5c5bf97fcc47b4f84f3ec /mysys | |
parent | 3baf20ab04f84899da057aed7313911e3e7d0e7b (diff) | |
parent | 4442cf5b6f0d909ae7369d766bc03ff3495466ba (diff) | |
download | mariadb-git-e58f1ca7f8a5b149320d781c3dc4abb9b3a566c2.tar.gz |
Merge bk-internal:/home/bk/mysql-4.1/
into serg.mylan:/usr/home/serg/Abk/mysql-4.1
Diffstat (limited to 'mysys')
-rw-r--r-- | mysys/mf_tempdir.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysys/mf_tempdir.c b/mysys/mf_tempdir.c index 1ae034af67d..4d244aa7d74 100644 --- a/mysys/mf_tempdir.c +++ b/mysys/mf_tempdir.c @@ -17,7 +17,7 @@ #include "mysys_priv.h" #include <m_string.h> -#if defined( __WIN__) || defined(OS2) +#if defined( __WIN__) || defined(OS2) || defined(__NETWARE__) #define DELIM ';' #else #define DELIM ':' @@ -35,7 +35,7 @@ my_bool init_tmpdir(MY_TMPDIR *tmpdir, const char *pathlist) { /* Get default temporary directory */ pathlist=getenv("TMPDIR"); /* Use this if possible */ -#if defined( __WIN__) || defined(OS2) +#if defined( __WIN__) || defined(OS2) || defined(__NETWARE__) if (!pathlist) pathlist=getenv("TEMP"); if (!pathlist) |