diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2020-12-03 14:20:21 +0100 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2020-12-03 14:41:52 +0100 |
| commit | 643fdf46845e2154338b833203e1e778d38b524f (patch) | |
| tree | 2c05180575778bff71de2a373c9e60fc0815845e /syz-hub | |
| parent | 59ad4022715beab289da8604f76e7944ca70abbe (diff) | |
syz-manager: send domain to hub
Actually send domain to the hub...
Update #2095
Diffstat (limited to 'syz-hub')
| -rw-r--r-- | syz-hub/hub.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/syz-hub/hub.go b/syz-hub/hub.go index fb39c59b0..5db4d0088 100644 --- a/syz-hub/hub.go +++ b/syz-hub/hub.go @@ -73,8 +73,8 @@ func (hub *Hub) Connect(a *rpctype.HubConnectArgs, r *int) error { hub.mu.Lock() defer hub.mu.Unlock() - log.Logf(0, "connect from %v: fresh=%v calls=%v corpus=%v", - name, a.Fresh, len(a.Calls), len(a.Corpus)) + log.Logf(0, "connect from %v: domain=%v fresh=%v calls=%v corpus=%v", + name, a.Domain, a.Fresh, len(a.Calls), len(a.Corpus)) if err := hub.st.Connect(name, a.Domain, a.Fresh, a.Calls, a.Corpus); err != nil { log.Logf(0, "connect error: %v", err) return err |
