diff options
author | unknown <miguel@hegel.local> | 2003-07-23 21:57:44 -0400 |
---|---|---|
committer | unknown <miguel@hegel.local> | 2003-07-23 21:57:44 -0400 |
commit | c67f50f37e5a11cf5c5b58483ce48b147b58a82c (patch) | |
tree | 7656dbd6deb4d924409536891bd3072e4cdd93a3 /include | |
parent | 9dce7500d7c18d3ef08a914e47e16462284d21d0 (diff) | |
download | mariadb-git-c67f50f37e5a11cf5c5b58483ce48b147b58a82c.tar.gz |
Fix for service issue with paths having spaces (bug #687)
Diffstat (limited to 'include')
-rw-r--r-- | include/my_sys.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/my_sys.h b/include/my_sys.h index 7f8b8a80a1c..acce118c7b8 100644 --- a/include/my_sys.h +++ b/include/my_sys.h @@ -100,6 +100,7 @@ extern int NEAR my_errno; /* Last error in mysys */ #define MY_RETURN_REAL_PATH 32 /* return full path for file */ #define MY_SAFE_PATH 64 /* Return NULL if too long path */ #define MY_RELATIVE_PATH 128 /* name is relative to 'dir' */ +#define MY_QUOTE_SPACES 256 /* quote when the path has spaces */ /* My seek flags */ #define MY_SEEK_SET 0 |