diff options
author | unknown <monty@hundin.mysql.fi> | 2001-10-11 22:02:16 +0300 |
---|---|---|
committer | unknown <monty@hundin.mysql.fi> | 2001-10-11 22:02:16 +0300 |
commit | 2a4845b48461a472522b57a9c9e1c11ae76f712f (patch) | |
tree | 6e9587de81599ae478e9d6deedc5fd8a0f4fd970 /client/mysqlmanagerc.c | |
parent | dd94eb03890805bcf0679f42f3cd62d247c2538f (diff) | |
download | mariadb-git-2a4845b48461a472522b57a9c9e1c11ae76f712f.tar.gz |
Cleanups
client/mysqlmanagerc.c:
Only use needed include files
libmysql/manager.c:
cleanup include files
scripts/make_binary_distribution.sh:
Fixed wrong filename
sql/mysqld.cc:
cleanup
tools/mysqlmanager.c:
Read with retrys
Diffstat (limited to 'client/mysqlmanagerc.c')
-rw-r--r-- | client/mysqlmanagerc.c | 16 |
1 files changed, 2 insertions, 14 deletions
diff --git a/client/mysqlmanagerc.c b/client/mysqlmanagerc.c index 66b77e237e2..4e34c85d55d 100644 --- a/client/mysqlmanagerc.c +++ b/client/mysqlmanagerc.c @@ -17,27 +17,15 @@ #define MANAGER_CLIENT_VERSION "1.0" #include <my_global.h> -#include <my_sys.h> -#include <m_string.h> #include <mysql.h> #include <mysql_version.h> -#include <m_ctype.h> -#ifdef OS2 -#include <config-os2.h> -#else -#include <my_config.h> -#endif -#include <my_dir.h> -#include <hash.h> #include <mysqld_error.h> -#include <stdio.h> -#include <stdlib.h> +#include <my_sys.h> +#include <m_string.h> #include <getopt.h> #include <stdarg.h> #include <sys/stat.h> #include <unistd.h> -#include <errno.h> -#include <violite.h> #ifndef MYSQL_MANAGER_PORT #define MYSQL_MANAGER_PORT 23546 |