diff options
author | Benoit Mortier <opensides@users.sourceforge.net> | 2004-12-25 23:17:46 +0000 |
---|---|---|
committer | Benoit Mortier <opensides@users.sourceforge.net> | 2004-12-25 23:17:46 +0000 |
commit | e9ccc6b21a1152bbf150302c4a29a6df79d75bd7 (patch) | |
tree | 91bf1ebb6f927fd628b298df2ac5a89580282591 /plugins/check_mysql.c | |
parent | 71656b2aafffb69716620bf08cce76c925dc8fa3 (diff) | |
download | monitoring-plugins-e9ccc6b21a1152bbf150302c4a29a6df79d75bd7.tar.gz |
various fixes for localization
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1061 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'plugins/check_mysql.c')
-rw-r--r-- | plugins/check_mysql.c | 16 |
1 files changed, 5 insertions, 11 deletions
diff --git a/plugins/check_mysql.c b/plugins/check_mysql.c index 1e7a82f9..735eaa2e 100644 --- a/plugins/check_mysql.c +++ b/plugins/check_mysql.c @@ -98,25 +98,25 @@ main (int argc, char **argv) /* check the slave status */ if (mysql_query (&mysql, "show slave status") != 0) { mysql_close (&mysql); - die (STATE_CRITICAL, "slave query error: %s\n", mysql_error (&mysql)); + die (STATE_CRITICAL, _("slave query error: %s\n"), mysql_error (&mysql)); } /* store the result */ if ( (res = mysql_store_result (&mysql)) == NULL) { mysql_close (&mysql); - die (STATE_CRITICAL, "slave store_result error: %s\n", mysql_error (&mysql)); + die (STATE_CRITICAL, _("slave store_result error: %s\n"), mysql_error (&mysql)); } /* fetch the first row */ if ( (row = mysql_fetch_row (res)) == NULL) { mysql_free_result (res); mysql_close (&mysql); - die (STATE_CRITICAL, "slave fetch row error: %s\n", mysql_error (&mysql)); + die (STATE_CRITICAL, _("slave fetch row error: %s\n"), mysql_error (&mysql)); } if (mysql_field_count (&mysql) == 12) { /* mysql 3.23.x */ - snprintf (slaveresult, SLAVERESULTSIZE, "Slave running: %s", row[6]); + snprintf (slaveresult, SLAVERESULTSIZE, _("Slave running: %s"), row[6]); if (strcmp (row[6], "Yes") != 0) { mysql_free_result (res); mysql_close (&mysql); @@ -151,7 +151,6 @@ main (int argc, char **argv) } - /* process command-line arguments */ int process_arguments (int argc, char **argv) @@ -212,9 +211,7 @@ process_arguments (int argc, char **argv) print_help (); exit (STATE_OK); case '?': /* help */ - printf (_("%s: Unknown argument: %s\n\n"), progname, optarg); - print_usage (); - exit (STATE_UNKNOWN); + usage2 (_("Unknown argument"), optarg); } } @@ -245,7 +242,6 @@ process_arguments (int argc, char **argv) } - int validate_arguments (void) { @@ -265,7 +261,6 @@ validate_arguments (void) } - void print_help (void) { @@ -304,7 +299,6 @@ a server listening on MySQL standard port %d will be checked\n"), MYSQL_PORT); } - void print_usage (void) { |