| 10260 | |
| 10261 | |
| 10262 | int error_if_data_home_dir(const char *path, const char *what) |
| 10263 | { |
| 10264 | size_t dirlen; |
| 10265 | char dirpath[FN_REFLEN]; |
| 10266 | if (path) |
| 10267 | { |
| 10268 | dirname_part(dirpath, path, &dirlen); |
| 10269 | if (test_if_data_home_dir(dirpath)) |
| 10270 | { |
| 10271 | my_error(ER_WRONG_ARGUMENTS, MYF(0), what); |
| 10272 | return 1; |
| 10273 | } |
| 10274 | } |
| 10275 | return 0; |
| 10276 | } |
| 10277 | |
| 10278 | /** |
| 10279 | Check that host name string is valid. |
no test coverage detected