diff --git a/AUTHORS b/AUTHORS index 6936e00..82d891a 100644 --- a/AUTHORS +++ b/AUTHORS @@ -29,7 +29,7 @@ Contributors: Bug report and patch for fixing check_network when run in a containerized environment ggzengel - https://github.com/ggzengel - Bug report (issues#137) + Bug reports (issues#137, issues#140) Some code and coding styles/ideas belong to the following open source projects: diff --git a/plugins/check_memory.c b/plugins/check_memory.c index d441c6c..09dde2b 100644 --- a/plugins/check_memory.c +++ b/plugins/check_memory.c @@ -1,7 +1,7 @@ // SPDX-License-Identifier: GPL-3.0-or-later /* * License: GPLv3+ - * Copyright (c) 2014-2022 Davide Madrisan + * Copyright (c) 2014-2024 Davide Madrisan * * A Nagios plugin to check system memory usage on Linux. * @@ -43,7 +43,7 @@ #include "xasprintf.h" static const char *program_copyright = - "Copyright (C) 2014-2022 Davide Madrisan <" PACKAGE_BUGREPORT ">\n"; + "Copyright (C) 2014-2024 Davide Madrisan <" PACKAGE_BUGREPORT ">\n"; static struct option const longopts[] = { {(char *) "available", no_argument, NULL, 'a'}, @@ -262,7 +262,7 @@ main (int argc, char **argv) dpgmajfault = nr_vmem_pgmajfault[1] - nr_vmem_pgmajfault[0]; perfdata_vmem_msg = - xasprintf (", vmem_pageins/s=%lu, vmem_pageouts/s=%lu, " + xasprintf (" vmem_pageins/s=%lu vmem_pageouts/s=%lu " "vmem_pgmajfault/s=%lu", dpgpgin, dpgpgout, dpgmajfault); }