mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
changes to IM code that came from Petr's review
This commit is contained in:
@ -291,23 +291,23 @@ void Options::cleanup()
|
||||
|
||||
#ifdef __WIN__
|
||||
|
||||
void Options::setup_windows_defaults()
|
||||
int Options::setup_windows_defaults()
|
||||
{
|
||||
if (!GetModuleFileName(NULL, default_password_file_name,
|
||||
sizeof(default_password_file_name)))
|
||||
return -1;
|
||||
return 1;
|
||||
char *filename= strstr(default_password_file_name, ".exe");
|
||||
strcpy(filename, ".passwd");
|
||||
|
||||
|
||||
if (!GetModuleFileName(NULL, default_log_file_name,
|
||||
sizeof(default_log_file_name)))
|
||||
return -1;
|
||||
return 1;
|
||||
filename= strstr(default_log_file_name, ".exe");
|
||||
strcpy(filename, ".log");
|
||||
|
||||
if (!GetModuleFileName(NULL, windows_config_file,
|
||||
sizeof(windows_config_file)))
|
||||
return -1;
|
||||
return 1;
|
||||
char *slash= strrchr(windows_config_file, '\\');
|
||||
strcpy(slash, "\\my.ini");
|
||||
return 0;
|
||||
|
Reference in New Issue
Block a user