diff options
author | Monty <monty@mariadb.org> | 2017-11-05 20:05:41 +0200 |
---|---|---|
committer | Monty <monty@mariadb.org> | 2017-11-05 22:23:32 +0200 |
commit | 99a287090570068b3b81d28edf533a26df696c26 (patch) | |
tree | 2d4c8c180de22ab84d34248f1efaaf7bd25eddff /sql/winservice.c | |
parent | bce807f70fbd386fd70dee3161972cb3449531b1 (diff) | |
download | mariadb-git-99a287090570068b3b81d28edf533a26df696c26.tar.gz |
Simple cleanups
- Add 'stage name' to debug output
Diffstat (limited to 'sql/winservice.c')
-rw-r--r-- | sql/winservice.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/sql/winservice.c b/sql/winservice.c index efbbb527c9b..388ea886cea 100644 --- a/sql/winservice.c +++ b/sql/winservice.c @@ -147,12 +147,13 @@ int get_mysql_service_properties(const wchar_t *bin_path, if(numargs == 2) { /* - There are rare cases where service config does not have - --defaults-filein the binary parth . There services were registered with - plain mysqld --install, the data directory is next to "bin" in this case. - Service name (second parameter) must be MySQL. + There are rare cases where service config does not have + --defaults-file in the binary parth . There services were + registered with plain mysqld --install, the data directory is + next to "bin" in this case. Service name (second parameter) + must be MySQL. */ - if(wcscmp(args[1], L"MySQL") != 0) + if (wcscmp(args[1], L"MySQL") != 0) goto end; have_inifile= FALSE; } |