diff options
author | unknown <monty@narttu.mysql.fi> | 2003-10-28 18:36:41 +0200 |
---|---|---|
committer | unknown <monty@narttu.mysql.fi> | 2003-10-28 18:36:41 +0200 |
commit | b11f9c1053733207073088223122c8b2fb3d1682 (patch) | |
tree | 5291391b3b4590c6726e448f934ccbdf8a3e4cd9 /include | |
parent | 0152ed020b19873ca39c9da5ba73640ced65fbb9 (diff) | |
download | mariadb-git-b11f9c1053733207073088223122c8b2fb3d1682.tar.gz |
Fix for problem of installing MySQL as a service with
mysql --install mysql --defualts-file=path-to-file
(Bug #1643)
include/mysql_com.h:
MySQL should install as default service "mysqld"
sql/mysqld.cc:
Fix for problem of installing MySQL as a service with
mysql --install mysql --defualts-file=path-to-file
Diffstat (limited to 'include')
-rw-r--r-- | include/mysql_com.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/mysql_com.h b/include/mysql_com.h index 6daf26bc2ac..27307b690b9 100644 --- a/include/mysql_com.h +++ b/include/mysql_com.h @@ -31,7 +31,7 @@ #if defined(__WIN__) && !defined( _CUSTOMCONFIG_) #define MYSQL_NAMEDPIPE "MySQL" -#define MYSQL_SERVICENAME "MySql" +#define MYSQL_SERVICENAME "mysqld" #endif /* __WIN__ */ enum enum_server_command { |