mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 03:52:35 +01:00
in netware ':' is also a valid path character
This commit is contained in:
parent
8388a57a96
commit
056a678d1a
2 changed files with 3 additions and 3 deletions
|
@ -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)
|
||||
|
|
|
@ -4180,7 +4180,7 @@ replicating a LOAD DATA INFILE command.",
|
|||
0, 0, 0, 0, 0},
|
||||
{"tmpdir", 't',
|
||||
"Path for temporary files. Several paths may be specified, separated by a "
|
||||
#if defined( __WIN__) || defined(OS2)
|
||||
#if defined( __WIN__) || defined(OS2) || defined(__NETWARE__)
|
||||
"semicolon (;)"
|
||||
#else
|
||||
"colon (:)"
|
||||
|
|
Loading…
Reference in a new issue