Skip to content

Commit

Permalink
Fix duplicate sectool names
Browse files Browse the repository at this point in the history
  • Loading branch information
moloch-- committed Nov 19, 2023
1 parent 4f9943e commit 853fb02
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client/command/processes/ps.go
Original file line number Diff line number Diff line change
Expand Up @@ -219,8 +219,8 @@ func findKnownSecurityProducts(ps *sliverpb.Ps) []string {
}
}
products := make([]string, 0, len(uniqProducts))
for name, color := range uniqProducts {
products = append(products, []string{color, name}...)
for name := range uniqProducts {
products = append(products, name)
}
return products
}
Expand Down

0 comments on commit 853fb02

Please sign in to comment.