aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrey Konovalov <andreyknvl@google.com>2017-07-19 17:32:48 +0200
committerAndrey Konovalov <andreyknvl@google.com>2017-07-19 17:32:48 +0200
commitf9f0e027d84992a3bcd0e2f348f85e9ad707a5a5 (patch)
tree5093cc0a136511a4126fcd5cf051a41a002dfc6f
parent0107e4124d76088695cc3c6132072a3e604121a4 (diff)
syz-manager: fix repro log filename
-rw-r--r--syz-manager/html.go2
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))