diff options
Diffstat (limited to 'plugins/check_nwstat.c')
-rw-r--r-- | plugins/check_nwstat.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/check_nwstat.c b/plugins/check_nwstat.c index 41b7c870..9c89ef9e 100644 --- a/plugins/check_nwstat.c +++ b/plugins/check_nwstat.c @@ -643,7 +643,7 @@ main(int argc, char **argv) { result=STATE_CRITICAL; else if (check_warning_value==TRUE && dirty_cache_buffers <= warning_value) result=STATE_WARNING; - asprintf (&output_message,_("dirty cache buffers = %lu%% of the total"),dirty_cache_buffers); + asprintf (&output_message,_("Dirty cache buffers = %lu%% of the total"),dirty_cache_buffers); /* check % total cache buffers as a percentage of the original*/ } else if (vars_to_check==TCB) { @@ -658,7 +658,7 @@ main(int argc, char **argv) { result=STATE_CRITICAL; else if (check_warning_value==TRUE && total_cache_buffers <= warning_value) result=STATE_WARNING; - asprintf (&output_message,_("total cache buffers = %lu%% of the original"),total_cache_buffers); + asprintf (&output_message,_("Total cache buffers = %lu%% of the original"),total_cache_buffers); } else if (vars_to_check==DSVER) { asprintf (&send_buffer,"S13\r\n"); |