aboutsummaryrefslogtreecommitdiff
path: root/plugins/check_mysql_query.c
diff options
context:
space:
mode:
authorGravatar Thomas Guyot-Sionnest <dermoth@aei.ca> 2009-05-20 00:20:11 -0400
committerGravatar Thomas Guyot-Sionnest <dermoth@aei.ca> 2009-05-20 00:20:11 -0400
commit917fcc7c302f67b42482a1a3e16e62f3b39d4e80 (patch)
treec8f54e0bd1aee7fe8352dcdf05f8d166f2025372 /plugins/check_mysql_query.c
parent50b3ff7b91e78a61aca93247bee586d6d7eb27c8 (diff)
downloadmonitoring-plugins-917fcc7c302f67b42482a1a3e16e62f3b39d4e80.tar.gz
Fix check_mysql* not using password set in my.cnf (#2531905 - Ben Timby)
Diffstat (limited to 'plugins/check_mysql_query.c')
-rw-r--r--plugins/check_mysql_query.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/check_mysql_query.c b/plugins/check_mysql_query.c
index 802e3456..47dd8616 100644
--- a/plugins/check_mysql_query.c
+++ b/plugins/check_mysql_query.c
@@ -3,7 +3,7 @@
* Nagios check_mysql_query plugin
*
* License: GPL
-* Copyright (c) 2006-2007 Nagios Plugins Development Team
+* Copyright (c) 2006-2009 Nagios Plugins Development Team
* Original code from check_mysql, copyright 1999 Didi Rieder
*
* Description:
@@ -266,9 +266,6 @@ validate_arguments (void)
if (db_host == NULL)
db_host = strdup("");
- if (db_pass == NULL)
- db_pass = strdup("");
-
if (db == NULL)
db = strdup("");
@@ -317,6 +314,9 @@ print_help (void)
printf ("\n");
printf ("%s\n", _("Notes:"));
printf (_(UT_EXTRA_OPTS_NOTES));
+ printf ("\n");
+ printf (" %s\n", _("You must specify -p with an empty string to force an empty password,"));
+ printf (" %s\n", _("overriding any my.cnf settings."));
#endif
printf (_(UT_SUPPORT));