summaryrefslogtreecommitdiff
path: root/client
diff options
context:
space:
mode:
authormwagner@evoq.home.mwagner.org <>2000-12-28 23:05:08 -0600
committermwagner@evoq.home.mwagner.org <>2000-12-28 23:05:08 -0600
commita70656791d51934ef3eeee47f6a03bf8d24a4e43 (patch)
treef24ce4d3fdc8c0fb6c3da413a9cbf700c93f264b /client
parent799993352850b685c761a7d4489753c00df0c9a4 (diff)
downloadmariadb-git-a70656791d51934ef3eeee47f6a03bf8d24a4e43.tar.gz
mysqltest.c Clean-ups.
Diffstat (limited to 'client')
-rw-r--r--client/mysqltest.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/client/mysqltest.c b/client/mysqltest.c
index 09780c343e0..18507879dfb 100644
--- a/client/mysqltest.c
+++ b/client/mysqltest.c
@@ -950,8 +950,6 @@ int read_query(struct query** q_ptr)
return 0;
}
-enum options {OPT_NODEFAULTS} ;
-
struct option long_options[] =
{
{"verbose", no_argument, 0, 'v'},
@@ -1030,7 +1028,7 @@ int parse_args(int argc, char **argv)
{
my_free(pass,MYF(MY_ALLOW_ZERO_PTR));
pass=my_strdup(optarg,MYF(MY_FAE));
- while (*optarg) *optarg++= 'x'; // Destroy argument
+ while (*optarg) *optarg++= 'x'; /* Destroy argument */
}
else
tty_password=1;