diff options
author | unknown <mwagner@evoq.home.mwagner.org> | 2000-12-28 23:05:08 -0600 |
---|---|---|
committer | unknown <mwagner@evoq.home.mwagner.org> | 2000-12-28 23:05:08 -0600 |
commit | 9f358065bf076fcdbb2af056aba5ba8ab9ccbb5d (patch) | |
tree | f24ce4d3fdc8c0fb6c3da413a9cbf700c93f264b /client | |
parent | 5020cf2cafd8ce8c0f1bf3fb58f6a07646508ab0 (diff) | |
download | mariadb-git-9f358065bf076fcdbb2af056aba5ba8ab9ccbb5d.tar.gz |
mysqltest.c Clean-ups.
client/mysqltest.c:
Clean-ups.
Diffstat (limited to 'client')
-rw-r--r-- | client/mysqltest.c | 4 |
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; |