Create the name of the default general log file @param[IN] buff Location for building new string. @param[IN] log_ext The extension for the file (e.g .log) @returns Pointer to a new string containing the name */
| 1524 | @returns Pointer to a new string containing the name |
| 1525 | */ |
| 1526 | static inline char *make_default_log_name(char *buff,const char* log_ext) |
| 1527 | { |
| 1528 | return make_log_name(buff, default_logfile_name, log_ext); |
| 1529 | } |
| 1530 | |
| 1531 | int init_common_variables(char *arg_mysql_home) |
| 1532 | { |
no test coverage detected