File tree Expand file tree Collapse file tree 2 files changed +9
-2
lines changed
Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change 1+ all : certscan
2+
3+ certscan : certscan.go
4+ go build -o $@ $^
5+
6+ fmt :
7+ gofmt -s -w -l .
Original file line number Diff line number Diff line change @@ -123,7 +123,7 @@ func directDomain(domain string) string {
123123// prints the adjacency list in sorted order
124124func printGraph () {
125125 domains := make ([]string , 0 , len (domainGraph ))
126- for domain , _ := range domainGraph {
126+ for domain := range domainGraph {
127127 domains = append (domains , domain )
128128 }
129129 sort .Strings (domains )
@@ -238,7 +238,7 @@ func BFSPeers(host string) []string {
238238 }
239239 }
240240
241- for domain , _ := range domainMap {
241+ for domain := range domainMap {
242242 domains = append (domains , domain )
243243 }
244244 sort .Strings (domains )
You can’t perform that action at this time.
0 commit comments