summaryrefslogtreecommitdiffstats
path: root/plugins/check_nwstat.c
diff options
context:
space:
mode:
authorBenoit Mortier <opensides@users.sourceforge.net>2004-12-03 09:19:18 (GMT)
committerBenoit Mortier <opensides@users.sourceforge.net>2004-12-03 09:19:18 (GMT)
commit83df67099daebd7189ad0417089040f3b2de27c1 (patch)
treea821e85265092ae1f55d64ac9499d9d951466470 /plugins/check_nwstat.c
parent9d704527496ac715e24bcc844b39125022c0aabc (diff)
downloadmonitoring-plugins-83df67099daebd7189ad0417089040f3b2de27c1.tar.gz
Localization fixes
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@988 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'plugins/check_nwstat.c')
-rw-r--r--plugins/check_nwstat.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/check_nwstat.c b/plugins/check_nwstat.c
index 41b7c87..9c89ef9 100644
--- a/plugins/check_nwstat.c
+++ b/plugins/check_nwstat.c
@@ -643,7 +643,7 @@ main(int argc, char **argv) {
643 result=STATE_CRITICAL; 643 result=STATE_CRITICAL;
644 else if (check_warning_value==TRUE && dirty_cache_buffers <= warning_value) 644 else if (check_warning_value==TRUE && dirty_cache_buffers <= warning_value)
645 result=STATE_WARNING; 645 result=STATE_WARNING;
646 asprintf (&output_message,_("dirty cache buffers = %lu%% of the total"),dirty_cache_buffers); 646 asprintf (&output_message,_("Dirty cache buffers = %lu%% of the total"),dirty_cache_buffers);
647 647
648 /* check % total cache buffers as a percentage of the original*/ 648 /* check % total cache buffers as a percentage of the original*/
649 } else if (vars_to_check==TCB) { 649 } else if (vars_to_check==TCB) {
@@ -658,7 +658,7 @@ main(int argc, char **argv) {
658 result=STATE_CRITICAL; 658 result=STATE_CRITICAL;
659 else if (check_warning_value==TRUE && total_cache_buffers <= warning_value) 659 else if (check_warning_value==TRUE && total_cache_buffers <= warning_value)
660 result=STATE_WARNING; 660 result=STATE_WARNING;
661 asprintf (&output_message,_("total cache buffers = %lu%% of the original"),total_cache_buffers); 661 asprintf (&output_message,_("Total cache buffers = %lu%% of the original"),total_cache_buffers);
662 662
663 } else if (vars_to_check==DSVER) { 663 } else if (vars_to_check==DSVER) {
664 asprintf (&send_buffer,"S13\r\n"); 664 asprintf (&send_buffer,"S13\r\n");