diff options
| -rw-r--r-- | syz-manager/html.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/syz-manager/html.go b/syz-manager/html.go index befcffc7e..d683be10b 100644 --- a/syz-manager/html.go +++ b/syz-manager/html.go @@ -253,7 +253,7 @@ func (mgr *Manager) httpReport(w http.ResponseWriter, r *http.Request) { prog, _ := ioutil.ReadFile(filepath.Join(mgr.crashdir, crashID, "repro.prog")) cprog, _ := ioutil.ReadFile(filepath.Join(mgr.crashdir, crashID, "repro.cprog")) rep, _ := ioutil.ReadFile(filepath.Join(mgr.crashdir, crashID, "repro.report")) - log, _ := ioutil.ReadFile(filepath.Join(mgr.crashdir, crashID, "repro.log")) + log, _ := ioutil.ReadFile(filepath.Join(mgr.crashdir, crashID, "repro.stats.log")) stats, _ := ioutil.ReadFile(filepath.Join(mgr.crashdir, crashID, "repro.stats")) fmt.Fprintf(w, "Syzkaller hit '%s' bug on commit %s.\n\n", trimNewLines(desc), trimNewLines(tag)) |
