aboutsummaryrefslogtreecommitdiffstats
path: root/syz-hub
diff options
context:
space:
mode:
authorAlexander Popov <alex.popov@linux.com>2017-06-14 15:59:45 +0300
committerAlexander Popov <alex.popov@linux.com>2017-06-14 15:59:45 +0300
commit7ebca77f72ecf6f7cb05d646c9c707da98e2b4f2 (patch)
tree64a79179a17f3379f33ee8a83b94fa8691fb2a57 /syz-hub
parent9104d6496b9060b594219fc41c466aa0f0de5e0f (diff)
syz-hub: fix copy-paste error in httpSummary()
Also mention Alexander Popov in AUTHORS and CONTRIBUTORS.
Diffstat (limited to 'syz-hub')
-rw-r--r--syz-hub/http.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/syz-hub/http.go b/syz-hub/http.go
index 1dde8e98f..3ee6ff686 100644
--- a/syz-hub/http.go
+++ b/syz-hub/http.go
@@ -41,7 +41,7 @@ func (hub *Hub) httpSummary(w http.ResponseWriter, r *http.Request) {
}
for name, mgr := range hub.st.Managers {
total.Added += mgr.Added
- total.Deleted += mgr.Added
+ total.Deleted += mgr.Deleted
total.New += mgr.New
data.Managers = append(data.Managers, UIManager{
Name: name,