Description: fix interpretation of the timeout bit
The timeout bit was interpreted backwards, straighten things up.
Origin: upstream, commit:adc8d7441d8d774cb6efb6aff748fb70ed41d51f + commit:96215f689140abe5a363b9a12741a1c47d89a135
Applied-Upstream: commit:adc8d7441d8d774cb6efb6aff748fb70ed41d51f + commit:96215f689140abe5a363b9a12741a1c47d89a135
Author: Patrick J. LoPresti <lopresti@gmail.com>
Bug-Debian: http://bugs.debian.org/587365
Index: mcelog-1.0~pre3/p4.c
===================================================================
--- mcelog-1.0~pre3.orig/p4.c 2010-06-28 18:30:01.691085844 +0200
+++ mcelog-1.0~pre3/p4.c 2010-06-28 18:31:41.073085306 +0200
@@ -98,7 +98,7 @@
static char* get_T_str(__u8 t)
{
- static char* T[] = {"Request-timeout", "Request-no-timeout"};
+ static char* T[] = {"Request-did-not-timeout", "Request-timed-out"};
if (t >= NELE(T)) {
return "UNKNOWN";
}