Browse Source

Fix escaping '\' in a string constant.

pull/249/head
Vladislav Vaintroub 9 years ago
parent
commit
8f5e3e2a34
  1. 2
      mysys/my_access.c

2
mysys/my_access.c

@ -186,7 +186,7 @@ static my_bool does_drive_exists(char drive_letter)
@return TRUE if the file name is allowed, FALSE otherwise.
*/
#define ILLEGAL_FILENAME_CHARS "<>:\"/\|?*"
#define ILLEGAL_FILENAME_CHARS "<>:\"/\\|?*"
my_bool is_filename_allowed(const char *name __attribute__((unused)),
size_t length __attribute__((unused)),

Loading…
Cancel
Save