aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/report/linux.go
diff options
context:
space:
mode:
authorTaras Madan <tarasmadan@google.com>2025-07-01 10:15:11 +0200
committerTaras Madan <tarasmadan@google.com>2025-07-02 08:52:54 +0000
commitd94a0369a298b9dd3a9bc17d664840ea6f64401e (patch)
treec3b24a3497e8ec085e88f2a12f6ae70bddbd07c6 /pkg/report/linux.go
parentbc80e4f080d226b12fae367dc46bc54ac3681009 (diff)
dashboard/app: use crash types instead, no regexps
Diffstat (limited to 'pkg/report/linux.go')
-rw-r--r--pkg/report/linux.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/report/linux.go b/pkg/report/linux.go
index f714e55cd..ff5d6bf4e 100644
--- a/pkg/report/linux.go
+++ b/pkg/report/linux.go
@@ -188,7 +188,7 @@ func (ctx *linux) Parse(output []byte) *Report {
}
rep.reportPrefixLen = len(rep.Report)
rep.Report = append(rep.Report, report...)
- rep.Type = titleToCrashType(rep.Title)
+ rep.Type = TitleToCrashType(rep.Title)
setExecutorInfo(rep)
if !rep.Corrupted {
rep.Corrupted, rep.CorruptedReason = isCorrupted(title, report, format)