diff options
Diffstat (limited to 'util/oem_kontron.c')
-rw-r--r-- | util/oem_kontron.c | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/util/oem_kontron.c b/util/oem_kontron.c index 259fbdc..891075a 100644 --- a/util/oem_kontron.c +++ b/util/oem_kontron.c @@ -943,19 +943,19 @@ int decode_sel_kontron(uint8_t *evt, char *outbuf, int outsz, char fdesc, if (rectype == 0xc1) { /* OEM type C1 */ oemid = evt[7] + (evt[8] << 8) + (evt[9] << 16); if (oemid == VENDOR_KONTRON) { - fmt_time(timestamp, timestr, sizeof(timestr)); - type_str = "Kontron"; - gstr = "BMC "; - switch(evt[10]) { - case 0x01: - default: - sprintf(mybuf,"OEM Event %02x %02x %02x %02x %02x %02x", + fmt_time(timestamp, timestr, sizeof(timestr)); + type_str = "Kontron"; + gstr = "BMC "; + switch(evt[10]) { + case 0x01: + default: + sprintf(mybuf,"OEM Event %02x %02x %02x %02x %02x %02x", evt[10], evt[11], evt[12], evt[13], evt[14], evt[15]); - break; - } - snprintf(outbuf, outsz, "%04x %s %s %s %s %s\n", + break; + } + snprintf(outbuf, outsz, "%04x %s %s %s %s %s\n", id,timestr,get_sev_str(sevid), gstr, type_str, mybuf); - rv = 0; + rv = 0; } /*endif kontron*/ } else if (rectype == 0x02) { type_str = ""; |