diff options
author | unknown <tsmith@siva.hindu.god> | 2007-04-18 21:29:38 -0600 |
---|---|---|
committer | unknown <tsmith@siva.hindu.god> | 2007-04-18 21:29:38 -0600 |
commit | 74192cf9840bd461375c1cff60eb6a686c381657 (patch) | |
tree | b047c8ce86a9b20450701b6367e1c23003774f77 /client/mysqltest.c | |
parent | c6e95257b5953185ae89784095201d67ad35a017 (diff) | |
download | mariadb-git-74192cf9840bd461375c1cff60eb6a686c381657.tar.gz |
Post-push fix of client/mysqltest.c oops.
client/mysqltest.c:
Actually include "client_priv.h", as intended in previous changeset.
Diffstat (limited to 'client/mysqltest.c')
-rw-r--r-- | client/mysqltest.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/client/mysqltest.c b/client/mysqltest.c index 839e8cd9a43..3babe46d954 100644 --- a/client/mysqltest.c +++ b/client/mysqltest.c @@ -33,18 +33,12 @@ #define MTEST_VERSION "3.2" -#include <my_global.h> -#include <mysql_embed.h> -#include <my_sys.h> -#include <m_string.h> -#include <mysql.h> +#include "client_priv.h" #include <mysql_version.h> #include <mysqld_error.h> -#include <errmsg.h> #include <m_ctype.h> #include <my_dir.h> #include <hash.h> -#include <my_getopt.h> #include <stdarg.h> #include <violite.h> #include "my_regex.h" /* Our own version of regex */ |