diff options
author | jani@rhols221.arenanet.fi <> | 2002-05-24 14:06:58 +0300 |
---|---|---|
committer | jani@rhols221.arenanet.fi <> | 2002-05-24 14:06:58 +0300 |
commit | 16e3b892a654fecac14e05a997af68506362d15c (patch) | |
tree | dde3a16d80cc4857063e077d484ded67a7697cb5 /vio | |
parent | ccdff5e484c660702c93c264dc8d1dcd883a10c1 (diff) | |
download | mariadb-git-16e3b892a654fecac14e05a997af68506362d15c.tar.gz |
Changed ft_dump, ft_eval, ft_test1, mi_test1, myisampack, gen_lex_hash,
mysqlmanager from using GNU getopt to use my_getopt.
Changed some files that just included old getopt.h to include
my_getopt.h now.
Fixed a bug in my_print_help() in my_getopt.c.
Made better documentation for option -G in mysql client.
Diffstat (limited to 'vio')
-rw-r--r-- | vio/test-ssl.c | 4 | ||||
-rw-r--r-- | vio/test-sslclient.c | 4 | ||||
-rw-r--r-- | vio/test-sslserver.c | 4 | ||||
-rw-r--r-- | vio/viotest-ssl.c | 4 |
4 files changed, 8 insertions, 8 deletions
diff --git a/vio/test-ssl.c b/vio/test-ssl.c index 09dae7ad5cf..9fdab86e9b9 100644 --- a/vio/test-ssl.c +++ b/vio/test-ssl.c @@ -25,11 +25,11 @@ #ifndef __GNU_LIBRARY__ #define __GNU_LIBRARY__ // Skip warnings in getopt.h #endif -#include <getopt.h> +#include <my_getopt.h> #include <signal.h> #include <violite.h> -const char *VER="0.1"; +const char *VER="0.2"; #ifndef DBUG_OFF diff --git a/vio/test-sslclient.c b/vio/test-sslclient.c index 51a78485642..84853e45485 100644 --- a/vio/test-sslclient.c +++ b/vio/test-sslclient.c @@ -25,11 +25,11 @@ #ifndef __GNU_LIBRARY__ #define __GNU_LIBRARY__ // Skip warnings in getopt.h #endif -#include <getopt.h> +#include <my_getopt.h> #include <signal.h> #include <violite.h> -const char *VER="0.1"; +const char *VER="0.2"; #ifndef DBUG_OFF diff --git a/vio/test-sslserver.c b/vio/test-sslserver.c index 988019a012b..a9e28ac7a58 100644 --- a/vio/test-sslserver.c +++ b/vio/test-sslserver.c @@ -25,11 +25,11 @@ #ifndef __GNU_LIBRARY__ #define __GNU_LIBRARY__ // Skip warnings in getopt.h #endif -#include <getopt.h> +#include <my_getopt.h> #include <signal.h> #include <violite.h> -const char *VER="0.1"; +const char *VER="0.2"; #ifndef DBUG_OFF diff --git a/vio/viotest-ssl.c b/vio/viotest-ssl.c index 8c549ae1d38..1a766a3fc97 100644 --- a/vio/viotest-ssl.c +++ b/vio/viotest-ssl.c @@ -25,12 +25,12 @@ #ifndef __GNU_LIBRARY__ #define __GNU_LIBRARY__ // Skip warnings in getopt.h #endif -#include <getopt.h> +#include <my_getopt.h> //#include "my_readline.h" #include <signal.h> #include <violite.h> -const char *VER="0.1"; +const char *VER="0.2"; #ifndef DBUG_OFF |