From dea071fd5bd9a49e0c3388c99061a072a2313d55 Mon Sep 17 00:00:00 2001 From: unknown Date: Thu, 6 May 2004 15:13:23 +0200 Subject: [PATCH] don't let -B increment opt_silent twice --- client/mysql.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/mysql.cc b/client/mysql.cc index e4499cc67ec..ddc6441f08a 100644 --- a/client/mysql.cc +++ b/client/mysql.cc @@ -800,7 +800,7 @@ get_one_option(int optid, const struct my_option *opt __attribute__((unused)), case 'B': status.batch= 1; status.add_to_history= 0; - opt_silent++; // more silent + set_if_bigger(opt_silent,1); // more silent break; case 'W': #ifdef __WIN__