Commit 4dec4e11 authored by Nirbhay Choubey's avatar Nirbhay Choubey

MDEV-6939 : Dots in file names of configuration files

Use fn_ext2() to get the file extension from last occurrence
of FN_EXTCHAR ('.') instead. Also made some cosmetic changes
in mysys/mf_fn_ext.c.
parent 66085f23
...@@ -849,7 +849,7 @@ static int search_default_file_with_ext(Process_option_func opt_handler, ...@@ -849,7 +849,7 @@ static int search_default_file_with_ext(Process_option_func opt_handler,
for (i= 0; i < (uint) search_dir->number_of_files; i++) for (i= 0; i < (uint) search_dir->number_of_files; i++)
{ {
search_file= search_dir->dir_entry + i; search_file= search_dir->dir_entry + i;
ext= fn_ext(search_file->name); ext= fn_ext2(search_file->name);
/* check extension */ /* check extension */
for (tmp_ext= (char**) f_extensions; *tmp_ext; tmp_ext++) for (tmp_ext= (char**) f_extensions; *tmp_ext; tmp_ext++)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment