>From 59a82b8209e42078a8c9a71b87031093882b5930 Mon Sep 17 00:00:00 2001 From: Jiri Moskovcak Date: Mon, 12 Dec 2011 09:34:46 +0100 Subject: [PATCH] ignore "Oops" messages, rhbz#726707 - "Oops" is not a standard warning messages and we should ignore it - it also doesn't have a calltrace which seems to confuse our parser which is the case in rhzb#726707 --- src/plugins/abrt-dump-oops.c | 3 --- 1 files changed, 0 insertions(+), 3 deletions(-) diff --git a/src/plugins/abrt-dump-oops.c b/src/plugins/abrt-dump-oops.c index 43a3c84..2900435 100644 --- a/src/plugins/abrt-dump-oops.c +++ b/src/plugins/abrt-dump-oops.c @@ -244,9 +244,6 @@ next_line: else if (strstr(curline, "IRQ handler type mismatch")) oopsstart = i; - if (i >= 3 && strstr(curline, "Oops:")) - oopsstart = i-3; - if (oopsstart >= 0) { /* debug information */ -- 1.7.7.3