From: Sebastien GODARD Date: Sun, 14 Feb 2021 10:07:01 +0000 (+0100) Subject: sysstat-12.5.3 X-Git-Tag: v12.5.3 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=975c166446d84ec88f2159ad29941453cba0c508;p=sysstat sysstat-12.5.3 sysstat version 12.5.3 final packaging. Changelog added. spec and lsm files updated. This also is mainly a bugfix version (sar, sadf). One noteworthy new feature is the addition of Link Time Optimization (LTO) support for smaller binary executables (use --enable-lto to enable it when compiling sysstat). Signed-off-by: Sebastien GODARD --- diff --git a/CHANGES b/CHANGES index 9a7f8b7..d46ba36 100644 --- a/CHANGES +++ b/CHANGES @@ -1,5 +1,28 @@ Changes: +2021/02/14: Version 12.5.3 - Sebastien Godard (sysstat orange.fr) + * Add Link Time Optimization (LTO) support. + * Fix LTO compilation warnings. + * sar: Fix return code sent by write_stats() function [12.4.3]. + * sar/sadc: Dereference nr array pointer in struct activity [12.4.3]. + * sadf: SVG: Make graphs discontinuous for disconnected devices [12.4.3]. + * sadf: SVG: Fix inadequate discontinuities in some graphs [12.4.3]. + * sadf: Raw: Display number of items in debug mode even if it's zero. + * sadf: SVG: Use the parameter entered on the command line [12.4.3]. + * sadf: SVG: Add 'debug' option. + * sadf: Update manual page. + * sar/sadc/sadf: Check untrusted values before use [12.4.3]. + * sar/sadc: Don't use IFNAMSIZ value from [12.4.3]. + * sar/sadf: Test codes returned by functions. + * simtest: Update/enhance simulation tests environment. + * simtest: Add new non regression tests (USB statistics, ...) + * Makefile: Define TEST flag when making simulation tests [12.4.3]. + * Makefile: Add copyyear target to make it easier to update year in (C) + messages. + * Update NLS translations [12.4.3]. + * Cosmetic changes in code. Some dead code removed. Code simplified. + * irqstat: Sync with upstream version (1.0.1-pre). + 2020/12/19: Version 12.5.2 - Sebastien Godard (sysstat orange.fr) * [Aleksei Nikiforov]: Fix alignment and structure size for 32-bit systems [12.4.2]. diff --git a/README.md b/README.md index 5ba7004..4946239 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ [![Total Alerts](https://img.shields.io/lgtm/alerts/g/sysstat/sysstat.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/sysstat/sysstat/alerts) [![Donate](https://img.shields.io/badge/Donate-PayPal-blue.svg)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=45U6F9R73ESFQ) -(C) 1999-2020 Sebastien GODARD (sysstat (at) orange (dot) fr) +(C) 1999-2021 Sebastien GODARD (sysstat (at) orange (dot) fr) ### Introduction diff --git a/activity.c b/activity.c index 74707f5..3f3a3bf 100644 --- a/activity.c +++ b/activity.c @@ -1,6 +1,6 @@ /* * activity.c: Define system activities available for sar/sadc. - * (C) 1999-2020 by Sebastien GODARD (sysstat orange.fr) + * (C) 1999-2021 by Sebastien GODARD (sysstat orange.fr) * *************************************************************************** * This program is free software; you can redistribute it and/or modify it * diff --git a/common.c b/common.c index af02224..fa81c6c 100644 --- a/common.c +++ b/common.c @@ -1,6 +1,6 @@ /* * sar, sadc, sadf, mpstat and iostat common routines. - * (C) 1999-2020 by Sebastien GODARD (sysstat orange.fr) + * (C) 1999-2021 by Sebastien GODARD (sysstat orange.fr) * *************************************************************************** * This program is free software; you can redistribute it and/or modify it * diff --git a/common.h b/common.h index a9902ee..ad88c37 100644 --- a/common.h +++ b/common.h @@ -1,6 +1,6 @@ /* * sysstat: System performance tools for Linux - * (C) 1999-2020 by Sebastien Godard (sysstat orange.fr) + * (C) 1999-2021 by Sebastien Godard (sysstat orange.fr) */ #ifndef _COMMON_H diff --git a/count.c b/count.c index 0bc5712..c1a9764 100644 --- a/count.c +++ b/count.c @@ -1,6 +1,6 @@ /* * count.c: Count items for which statistics will be collected. - * (C) 1999-2020 by Sebastien GODARD (sysstat orange.fr) + * (C) 1999-2021 by Sebastien GODARD (sysstat orange.fr) * *************************************************************************** * This program is free software; you can redistribute it and/or modify it * diff --git a/count.h b/count.h index db1364e..cf0b160 100644 --- a/count.h +++ b/count.h @@ -1,7 +1,7 @@ /* * count.h: Include file used to count items for which * statistics will be collected. - * (C) 1999-2020 by Sebastien Godard (sysstat orange.fr) + * (C) 1999-2021 by Sebastien Godard (sysstat orange.fr) */ #ifndef _COUNT_H diff --git a/format.c b/format.c index 78cd1d8..9547f30 100644 --- a/format.c +++ b/format.c @@ -1,6 +1,6 @@ /* * format.c: Output format definitions for sadf and sar - * (C) 2011-2020 by Sebastien GODARD (sysstat orange.fr) + * (C) 2011-2021 by Sebastien GODARD (sysstat orange.fr) * *************************************************************************** * This program is free software; you can redistribute it and/or modify it * diff --git a/iconfig b/iconfig old mode 100755 new mode 100644 index 23afaf3..c9d57c3 --- a/iconfig +++ b/iconfig @@ -1,6 +1,6 @@ #!/bin/sh #@(#) Configuration script for sysstat -# (C) 2000-2020 Sebastien GODARD (sysstat orange.fr) +# (C) 2000-2021 Sebastien GODARD (sysstat orange.fr) ASK="sh build/Ask.sh" diff --git a/iostat.c b/iostat.c index 6eb5ce5..330f8c1 100644 --- a/iostat.c +++ b/iostat.c @@ -1,6 +1,6 @@ /* * iostat: report CPU and I/O statistics - * (C) 1998-2020 by Sebastien GODARD (sysstat orange.fr) + * (C) 1998-2021 by Sebastien GODARD (sysstat orange.fr) * *************************************************************************** * This program is free software; you can redistribute it and/or modify it * diff --git a/iostat.h b/iostat.h index 344700b..c051db1 100644 --- a/iostat.h +++ b/iostat.h @@ -1,6 +1,6 @@ /* * iostat: report CPU and I/O statistics - * (C) 1999-2020 by Sebastien Godard (sysstat orange.fr) + * (C) 1999-2021 by Sebastien Godard (sysstat orange.fr) */ #ifndef _IOSTAT_H diff --git a/json_stats.c b/json_stats.c index 3ecd069..f5c6c96 100644 --- a/json_stats.c +++ b/json_stats.c @@ -1,6 +1,6 @@ /* * json_stats.c: Funtions used by sadf to display statistics in JSON format. - * (C) 1999-2020 by Sebastien GODARD (sysstat orange.fr) + * (C) 1999-2021 by Sebastien GODARD (sysstat orange.fr) * *************************************************************************** * This program is free software; you can redistribute it and/or modify it * diff --git a/json_stats.h b/json_stats.h index 133a292..555b3f8 100644 --- a/json_stats.h +++ b/json_stats.h @@ -1,6 +1,6 @@ /* * json_stats.h: Include file used to display system statistics in JSON format. - * (C) 1999-2020 by Sebastien Godard (sysstat orange.fr) + * (C) 1999-2021 by Sebastien Godard (sysstat orange.fr) */ #ifndef _JSON_STATS_H diff --git a/mpstat.c b/mpstat.c index bcef52c..0f33d82 100644 --- a/mpstat.c +++ b/mpstat.c @@ -1,6 +1,6 @@ /* * mpstat: per-processor statistics - * (C) 2000-2020 by Sebastien GODARD (sysstat orange.fr) + * (C) 2000-2021 by Sebastien GODARD (sysstat orange.fr) * *************************************************************************** * This program is free software; you can redistribute it and/or modify it * diff --git a/mpstat.h b/mpstat.h index 93a74cc..23229dc 100644 --- a/mpstat.h +++ b/mpstat.h @@ -1,6 +1,6 @@ /* * mpstat: per-processor statistics - * (C) 2000-2020 by Sebastien Godard (sysstat orange.fr) + * (C) 2000-2021 by Sebastien Godard (sysstat orange.fr) */ #ifndef _MPSTAT_H diff --git a/pcp_def_metrics.c b/pcp_def_metrics.c index 61cf7af..25ce809 100644 --- a/pcp_def_metrics.c +++ b/pcp_def_metrics.c @@ -1,6 +1,6 @@ /* * pcp_def_metrics.c: Funtions used by sadf to define PCP metrics - * (C) 2019-2020 by Sebastien GODARD (sysstat orange.fr) + * (C) 2019-2021 by Sebastien GODARD (sysstat orange.fr) * *************************************************************************** * This program is free software; you can redistribute it and/or modify it * diff --git a/pcp_def_metrics.h b/pcp_def_metrics.h index 809bab2..0af1d3f 100644 --- a/pcp_def_metrics.h +++ b/pcp_def_metrics.h @@ -1,6 +1,6 @@ /* * pcp_def_metrics.h: Include file used to define PCP metrics. - * (C) 2019-2020 by Sebastien Godard (sysstat orange.fr) + * (C) 2019-2021 by Sebastien Godard (sysstat orange.fr) */ #ifndef _PCP_DEF_METRICS_H diff --git a/pcp_stats.c b/pcp_stats.c index dfcfcf0..a76da9d 100644 --- a/pcp_stats.c +++ b/pcp_stats.c @@ -1,6 +1,6 @@ /* * pcp_stats.c: Funtions used by sadf to create PCP archive files. - * (C) 2019-2020 by Sebastien GODARD (sysstat orange.fr) + * (C) 2019-2021 by Sebastien GODARD (sysstat orange.fr) * *************************************************************************** * This program is free software; you can redistribute it and/or modify it * diff --git a/pcp_stats.h b/pcp_stats.h index f282398..c988ea2 100644 --- a/pcp_stats.h +++ b/pcp_stats.h @@ -1,6 +1,6 @@ /* * pcp_stats.h: Include file used to display system statistics in PCP format. - * (C) 2019-2020 by Sebastien Godard (sysstat orange.fr) + * (C) 2019-2021 by Sebastien Godard (sysstat orange.fr) */ #ifndef _PCP_STATS_H diff --git a/pidstat.c b/pidstat.c index 799a1fc..076e664 100644 --- a/pidstat.c +++ b/pidstat.c @@ -1,6 +1,6 @@ /* * pidstat: Report statistics for Linux tasks - * (C) 2007-2020 by Sebastien GODARD (sysstat orange.fr) + * (C) 2007-2021 by Sebastien GODARD (sysstat orange.fr) * *************************************************************************** * This program is free software; you can redistribute it and/or modify it * diff --git a/pidstat.h b/pidstat.h index 9113d2e..ac7a6a0 100644 --- a/pidstat.h +++ b/pidstat.h @@ -1,6 +1,6 @@ /* * pidstat: Display per-process statistics. - * (C) 2007-2020 by Sebastien Godard (sysstat orange.fr) + * (C) 2007-2021 by Sebastien Godard (sysstat orange.fr) */ #ifndef _PIDSTAT_H #define _PIDSTAT_H diff --git a/pr_stats.c b/pr_stats.c index 92b4dfd..640e2a6 100644 --- a/pr_stats.c +++ b/pr_stats.c @@ -1,6 +1,6 @@ /* * pr_stats.c: Functions used by sar to display statistics - * (C) 1999-2020 by Sebastien GODARD (sysstat orange.fr) + * (C) 1999-2021 by Sebastien GODARD (sysstat orange.fr) * *************************************************************************** * This program is free software; you can redistribute it and/or modify it * diff --git a/pr_stats.h b/pr_stats.h index dd52404..22427f6 100644 --- a/pr_stats.h +++ b/pr_stats.h @@ -1,6 +1,6 @@ /* * pr_stats.h: Include file used to display system statistics - * (C) 1999-2020 by Sebastien Godard (sysstat orange.fr) + * (C) 1999-2021 by Sebastien Godard (sysstat orange.fr) */ #ifndef _PR_STATS_H diff --git a/raw_stats.c b/raw_stats.c index 719844e..1b65d79 100644 --- a/raw_stats.c +++ b/raw_stats.c @@ -1,6 +1,6 @@ /* * raw_stats.c: Functions used by sar to display statistics in raw format. - * (C) 1999-2020 by Sebastien GODARD (sysstat orange.fr) + * (C) 1999-2021 by Sebastien GODARD (sysstat orange.fr) * *************************************************************************** * This program is free software; you can redistribute it and/or modify it * diff --git a/raw_stats.h b/raw_stats.h index 6bd8645..f213127 100644 --- a/raw_stats.h +++ b/raw_stats.h @@ -1,6 +1,6 @@ /* * raw_stats.h: Include file used to display statistics in raw format. - * (C) 1999-2020 by Sebastien Godard (sysstat orange.fr) + * (C) 1999-2021 by Sebastien Godard (sysstat orange.fr) */ #ifndef _RAW_STATS_H diff --git a/rd_sensors.c b/rd_sensors.c index 1d3f560..9d2b199 100644 --- a/rd_sensors.c +++ b/rd_sensors.c @@ -1,6 +1,6 @@ /* * rd_sensors.c: Read sensors statistics - * (C) 1999-2020 by Sebastien GODARD (sysstat orange.fr) + * (C) 1999-2021 by Sebastien GODARD (sysstat orange.fr) * *************************************************************************** * This program is free software; you can redistribute it and/or modify it * diff --git a/rd_sensors.h b/rd_sensors.h index ee5e92c..4d464ba 100644 --- a/rd_sensors.h +++ b/rd_sensors.h @@ -1,6 +1,6 @@ /* * rd_sensors.h: Include file used to read sensors statistics - * (C) 1999-2020 by Sebastien Godard (sysstat orange.fr) + * (C) 1999-2021 by Sebastien Godard (sysstat orange.fr) */ #ifndef _RD_SENSORS_H diff --git a/rd_stats.c b/rd_stats.c index 284ba2f..ec07420 100644 --- a/rd_stats.c +++ b/rd_stats.c @@ -1,6 +1,6 @@ /* * rd_stats.c: Read system statistics - * (C) 1999-2020 by Sebastien GODARD (sysstat orange.fr) + * (C) 1999-2021 by Sebastien GODARD (sysstat orange.fr) * *************************************************************************** * This program is free software; you can redistribute it and/or modify it * diff --git a/rd_stats.h b/rd_stats.h index 8e401bd..9dda2df 100644 --- a/rd_stats.h +++ b/rd_stats.h @@ -1,6 +1,6 @@ /* * rd_stats.h: Include file used to read system statistics - * (C) 1999-2020 by Sebastien Godard (sysstat orange.fr) + * (C) 1999-2021 by Sebastien Godard (sysstat orange.fr) */ #ifndef _RD_STATS_H diff --git a/rndr_stats.c b/rndr_stats.c index 8567802..9c71ca0 100644 --- a/rndr_stats.c +++ b/rndr_stats.c @@ -1,6 +1,6 @@ /* * rndr_stats.c: Funtions used by sadf to display statistics in selected format. - * (C) 1999-2020 by Sebastien GODARD (sysstat orange.fr) + * (C) 1999-2021 by Sebastien GODARD (sysstat orange.fr) * *************************************************************************** * This program is free software; you can redistribute it and/or modify it * diff --git a/rndr_stats.h b/rndr_stats.h index 3db592e..68d5750 100644 --- a/rndr_stats.h +++ b/rndr_stats.h @@ -1,6 +1,6 @@ /* * rndr_stats.h: Include file used to display system statistics in selected format. - * (C) 1999-2020 by Sebastien Godard (sysstat orange.fr) + * (C) 1999-2021 by Sebastien Godard (sysstat orange.fr) */ #ifndef _RNDR_STATS_H diff --git a/sa.h b/sa.h index 9029a93..289ab53 100644 --- a/sa.h +++ b/sa.h @@ -1,6 +1,6 @@ /* * sar/sadc: Report system activity - * (C) 1999-2020 by Sebastien Godard (sysstat orange.fr) + * (C) 1999-2021 by Sebastien Godard (sysstat orange.fr) */ #ifndef _SA_H diff --git a/sa1.in b/sa1.in index 3ae2e3b..2b0b7ed 100644 --- a/sa1.in +++ b/sa1.in @@ -1,6 +1,6 @@ #!/bin/sh # @SA_LIB_DIR@/sa1 -# (C) 1999-2020 Sebastien Godard (sysstat orange.fr) +# (C) 1999-2021 Sebastien Godard (sysstat orange.fr) # #@(#) @PACKAGE_NAME@-@PACKAGE_VERSION@ #@(#) sa1: Collect and store binary data in system activity data file. diff --git a/sa2.in b/sa2.in index 14eeab5..062db86 100644 --- a/sa2.in +++ b/sa2.in @@ -1,6 +1,6 @@ #!/bin/sh # @SA_LIB_DIR@/sa2 -# (C) 1999-2020 Sebastien Godard (sysstat orange.fr) +# (C) 1999-2021 Sebastien Godard (sysstat orange.fr) # #@(#) @PACKAGE_NAME@-@PACKAGE_VERSION@ #@(#) sa2: Write a daily report diff --git a/sa_common.c b/sa_common.c index 0fa2cec..eb168dc 100644 --- a/sa_common.c +++ b/sa_common.c @@ -1,6 +1,6 @@ /* * sar and sadf common routines. - * (C) 1999-2020 by Sebastien GODARD (sysstat orange.fr) + * (C) 1999-2021 by Sebastien GODARD (sysstat orange.fr) * *************************************************************************** * This program is free software; you can redistribute it and/or modify it * diff --git a/sa_conv.c b/sa_conv.c index 5575bd1..ba68ecb 100644 --- a/sa_conv.c +++ b/sa_conv.c @@ -1,6 +1,6 @@ /* * sa_conv.c: Convert an old format sa file to the up-to-date format. - * (C) 1999-2020 by Sebastien GODARD (sysstat orange.fr) + * (C) 1999-2021 by Sebastien GODARD (sysstat orange.fr) * *************************************************************************** * This program is free software; you can redistribute it and/or modify it * diff --git a/sa_conv.h b/sa_conv.h index 3e49b93..bfe2a5b 100644 --- a/sa_conv.h +++ b/sa_conv.h @@ -1,6 +1,6 @@ /* * sa_conv.h: Include file for "sadf -c" command. - * (C) 1999-2020 by Sebastien Godard (sysstat orange.fr) + * (C) 1999-2021 by Sebastien Godard (sysstat orange.fr) */ #ifndef _SA_CONV_H diff --git a/sa_wrap.c b/sa_wrap.c index bfc2a81..5368146 100644 --- a/sa_wrap.c +++ b/sa_wrap.c @@ -1,6 +1,6 @@ /* * sysstat - sa_wrap.c: Functions used in activity.c - * (C) 1999-2020 by Sebastien GODARD (sysstat orange.fr) + * (C) 1999-2021 by Sebastien GODARD (sysstat orange.fr) * *************************************************************************** * This program is free software; you can redistribute it and/or modify it * diff --git a/sadc.c b/sadc.c index 8f4d645..c4de3a7 100644 --- a/sadc.c +++ b/sadc.c @@ -1,6 +1,6 @@ /* * sadc: system activity data collector - * (C) 1999-2020 by Sebastien GODARD (sysstat orange.fr) + * (C) 1999-2021 by Sebastien GODARD (sysstat orange.fr) * *************************************************************************** * This program is free software; you can redistribute it and/or modify it * diff --git a/sadf.c b/sadf.c index c648692..fcb1063 100644 --- a/sadf.c +++ b/sadf.c @@ -1,6 +1,6 @@ /* * sadf: system activity data formatter - * (C) 1999-2020 by Sebastien GODARD (sysstat orange.fr) + * (C) 1999-2021 by Sebastien GODARD (sysstat orange.fr) * *************************************************************************** * This program is free software; you can redistribute it and/or modify it * diff --git a/sadf.h b/sadf.h index 87cd341..18fd066 100644 --- a/sadf.h +++ b/sadf.h @@ -1,6 +1,6 @@ /* * sadf: System activity data formatter - * (C) 1999-2020 by Sebastien Godard (sysstat orange.fr) + * (C) 1999-2021 by Sebastien Godard (sysstat orange.fr) */ #ifndef _SADF_H diff --git a/sadf_misc.c b/sadf_misc.c index 87c8dfe..5ea2c98 100644 --- a/sadf_misc.c +++ b/sadf_misc.c @@ -1,6 +1,6 @@ /* * sadf_misc.c: Funtions used by sadf to display special records - * (C) 2011-2020 by Sebastien GODARD (sysstat orange.fr) + * (C) 2011-2021 by Sebastien GODARD (sysstat orange.fr) * *************************************************************************** * This program is free software; you can redistribute it and/or modify it * diff --git a/sar.c b/sar.c index 519ad65..c49e777 100644 --- a/sar.c +++ b/sar.c @@ -1,6 +1,6 @@ /* * sar: report system activity - * (C) 1999-2020 by Sebastien GODARD (sysstat orange.fr) + * (C) 1999-2021 by Sebastien GODARD (sysstat orange.fr) * *************************************************************************** * This program is free software; you can redistribute it and/or modify it * diff --git a/svg_stats.c b/svg_stats.c index 5427458..821869d 100644 --- a/svg_stats.c +++ b/svg_stats.c @@ -1,6 +1,6 @@ /* * svg_stats.c: Funtions used by sadf to display statistics in SVG format. - * (C) 2016-2020 by Sebastien GODARD (sysstat orange.fr) + * (C) 2016-2021 by Sebastien GODARD (sysstat orange.fr) * *************************************************************************** * This program is free software; you can redistribute it and/or modify it * diff --git a/svg_stats.h b/svg_stats.h index 32aecc0..57b6019 100644 --- a/svg_stats.h +++ b/svg_stats.h @@ -1,6 +1,6 @@ /* * svg_stats.h: Include file used to display system statistics in SVG format. - * (C) 2016-2020 by Sebastien Godard (sysstat orange.fr) + * (C) 2016-2021 by Sebastien Godard (sysstat orange.fr) */ #ifndef _SVG_STATS_H diff --git a/sysconfig.in b/sysconfig.in index c947849..2a231f4 100644 --- a/sysconfig.in +++ b/sysconfig.in @@ -1,6 +1,6 @@ /* * sysstat: System performance tools for Linux - * (C) 1999-2020 by Sebastien Godard (sysstat orange.fr) + * (C) 1999-2021 by Sebastien Godard (sysstat orange.fr) */ #ifndef _SYSCONFIG_H diff --git a/sysstat-12.5.2.lsm b/sysstat-12.5.3.lsm similarity index 89% rename from sysstat-12.5.2.lsm rename to sysstat-12.5.3.lsm index dea1e3c..4e611da 100644 --- a/sysstat-12.5.2.lsm +++ b/sysstat-12.5.3.lsm @@ -1,7 +1,7 @@ Begin4 Title: sysstat - the sar, sadf, mpstat, iostat, tapestat, pidstat and cifsiostat commands for Linux -Version: 12.5.2 -Entered-date: 2020-12-19 +Version: 12.5.3 +Entered-date: 2021-02-14 Description: The sysstat package contains the sar, sadf, mpstat, iostat, tapestat, pidstat, cifsiostat and sa tools for Linux. The sar command collects and reports system activity @@ -29,11 +29,11 @@ Keywords: system administration, system monitoring, sar, sadf, iostat, mpstat, t Author: sysstat@NOSPAM.orange.fr (Sebastien Godard) Maintained-by: sysstat@NOSPAM.orange.fr (Sebastien Godard) Primary-site: http://pagesperso-orange.fr/sebastien.godard/ - 1395kiB sysstat-12.5.2.tar.gz - 1098kiB sysstat-12.5.2.tar.bz2 - 799kiB sysstat-12.5.2.tar.xz - 1322kiB sysstat-12.5.2-1.src.rpm - 434kiB sysstat-12.5.2-1.x86_64.rpm + 1493kiB sysstat-12.5.3.tar.gz + 1143kiB sysstat-12.5.3.tar.bz2 + 838kiB sysstat-12.5.3.tar.xz + 1407kiB sysstat-12.5.3-1.src.rpm + 433kiB sysstat-12.5.3-1.x86_64.rpm Alternate-site: Copying-policy: GPL End diff --git a/sysstat-12.5.2.spec b/sysstat-12.5.3.spec similarity index 99% rename from sysstat-12.5.2.spec rename to sysstat-12.5.3.spec index b99fe5a..5d7042f 100644 --- a/sysstat-12.5.2.spec +++ b/sysstat-12.5.3.spec @@ -1,6 +1,6 @@ Summary: SAR, SADF, MPSTAT, IOSTAT, TAPESTAT, PIDSTAT and CIFSIOSTAT for Linux Name: sysstat -Version: 12.5.2 +Version: 12.5.3 Release: 1 License: GPL Group: Applications/System diff --git a/sysstat.in b/sysstat.in index c12bbba..b850d7e 100644 --- a/sysstat.in +++ b/sysstat.in @@ -4,7 +4,7 @@ # description: Reset the system activity logs # # @INIT_DIR@/sysstat -# (C) 2000-2020 Sebastien Godard (sysstat orange.fr) +# (C) 2000-2021 Sebastien Godard (sysstat orange.fr) # ### BEGIN INIT INFO # Provides: sysstat diff --git a/systest.c b/systest.c index acb094a..71f73b2 100644 --- a/systest.c +++ b/systest.c @@ -1,6 +1,6 @@ /* * sysstat test functions. - * (C) 2019-2020 by Sebastien GODARD (sysstat orange.fr) + * (C) 2019-2021 by Sebastien GODARD (sysstat orange.fr) * *************************************************************************** * This program is free software; you can redistribute it and/or modify it * diff --git a/systest.h b/systest.h index 0b8ee2b..6c1ff3f 100644 --- a/systest.h +++ b/systest.h @@ -1,6 +1,6 @@ /* * sysstat: System performance tools for Linux - * (C) 1999-2020 by Sebastien Godard (sysstat orange.fr) + * (C) 1999-2021 by Sebastien Godard (sysstat orange.fr) */ #ifndef _SYSTEST_H diff --git a/version.in b/version.in index f291e81..78e3f2c 100644 --- a/version.in +++ b/version.in @@ -1,6 +1,6 @@ /* * sysstat: System performance tools for Linux - * (C) 1999-2020 by Sebastien Godard (sysstat orange.fr) + * (C) 1999-2021 by Sebastien Godard (sysstat orange.fr) */ #ifndef _VERSION_H diff --git a/xml_stats.c b/xml_stats.c index c693235..324f984 100644 --- a/xml_stats.c +++ b/xml_stats.c @@ -1,6 +1,6 @@ /* * xml_stats.c: Funtions used by sadf to display statistics in XML. - * (C) 1999-2020 by Sebastien GODARD (sysstat orange.fr) + * (C) 1999-2021 by Sebastien GODARD (sysstat orange.fr) * *************************************************************************** * This program is free software; you can redistribute it and/or modify it * diff --git a/xml_stats.h b/xml_stats.h index df1bbca..cc014f9 100644 --- a/xml_stats.h +++ b/xml_stats.h @@ -1,6 +1,6 @@ /* * xml_stats.h: Include file used to display system statistics in XML. - * (C) 1999-2020 by Sebastien Godard (sysstat orange.fr) + * (C) 1999-2021 by Sebastien Godard (sysstat orange.fr) */ #ifndef _XML_STATS_H