Sign Up
Log In
Log In
or
Sign Up
Places
All Projects
Status Monitor
Collapse sidebar
openSUSE:Leap:15.5:Update
ipmitool.31435
Fix-time-format-for-sel-list-v.patch
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
File Fix-time-format-for-sel-list-v.patch of Package ipmitool.31435
From: Thomas Renninger <trenn@suse.com> Subject: Fix time format for sel list -v References: bsc#1213390 Patch-Mainline: Git-commit: d34a56908da3d85c4ddce1be1aab90941177b13b Git-repo: git@github.com:watologo1/ipmitool.git.git The time for sel entries gets wrongly formatted: SEL Record ID : 3135 Record Type : 02 Timestamp : 18.07.2023 18.07.2023 Generator ID : 0044 This patch fixes this: SEL Record ID : 3135 Record Type : 02 Timestamp : 18.07.2023 11:26:24 CEST Generator ID : 0044 The first hunk for: `sel list -v` The snd hunk for: `sel get ID` Signed-off-by: <trenn@suse.com> Index: ipmitool-1.8.18+git20200204.7ccea28/lib/ipmi_sel.c =================================================================== --- ipmitool-1.8.18+git20200204.7ccea28.orig/lib/ipmi_sel.c +++ ipmitool-1.8.18+git20200204.7ccea28/lib/ipmi_sel.c @@ -2031,11 +2031,9 @@ ipmi_sel_print_std_entry_verbose(struct { printf(" Timestamp : "); if (evt->record_type < 0xc0) - printf("%s %s", ipmi_timestamp_date(evt->sel_type.standard_type.timestamp), - ipmi_timestamp_time(evt->sel_type.standard_type.timestamp)); + printf("%s", ipmi_timestamp_numeric(evt->sel_type.standard_type.timestamp)); else - printf("%s %s", ipmi_timestamp_date(evt->sel_type.oem_ts_type.timestamp), - ipmi_timestamp_time(evt->sel_type.oem_ts_type.timestamp)); + printf("%s", ipmi_timestamp_numeric(evt->sel_type.oem_ts_type.timestamp)); printf("\n"); } @@ -2121,8 +2119,7 @@ ipmi_sel_print_extended_entry_verbose(st if (evt->record_type < 0xe0) { printf(" Timestamp : "); - printf("%s %s\n", ipmi_timestamp_date(evt->sel_type.standard_type.timestamp), - ipmi_timestamp_time(evt->sel_type.standard_type.timestamp)); + printf("%s\n", ipmi_timestamp_numeric(evt->sel_type.standard_type.timestamp)); }
Locations
Projects
Search
Status Monitor
Help
OpenBuildService.org
Documentation
API Documentation
Code of Conduct
Contact
Support
@OBShq
Terms
openSUSE Build Service is sponsored by
The Open Build Service is an
openSUSE project
.
Sign Up
Log In
Places
Places
All Projects
Status Monitor