summaryrefslogtreecommitdiffstats
path: root/plugins/check_nwstat.c
diff options
context:
space:
mode:
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");