Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update Sirupsen -> sirupsen #124

Merged
merged 3 commits into from
Sep 2, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
zdns/zdns
.*
*.iml
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What is this for?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

IntelliJ project file

2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ language: go
go:
- 1.7.4
before_install:
- go get github.com/Sirupsen/logrus
- go get github.com/sirupsen/logrus
- go get github.com/miekg/dns
- go get github.com/zmap/go-iptree/iptree
- go get github.com/zmap/go-iptree/blacklist
Expand Down
2 changes: 1 addition & 1 deletion interface.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ import (
"math/rand"
"strings"

log "github.com/Sirupsen/logrus"
"github.com/miekg/dns"
log "github.com/sirupsen/logrus"
)

/* Each lookup module registers a single GlobalLookupFactory, which is
Expand Down
2 changes: 1 addition & 1 deletion lookup.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ import (
"sync"
"time"

log "github.com/Sirupsen/logrus"
"github.com/miekg/dns"
log "github.com/sirupsen/logrus"
)

type routineMetadata struct {
Expand Down
2 changes: 1 addition & 1 deletion modules/axfr/axfr.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import (
"strings"
"sync"

log "github.com/Sirupsen/logrus"
log "github.com/sirupsen/logrus"

"github.com/miekg/dns"
"github.com/zmap/go-iptree/blacklist"
Expand Down
2 changes: 1 addition & 1 deletion modules/miekg/miekg.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"sync"
"time"

log "github.com/Sirupsen/logrus"
log "github.com/sirupsen/logrus"

"github.com/miekg/dns"
"github.com/zmap/zdns"
Expand Down
2 changes: 1 addition & 1 deletion zdns/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ import (
"strings"
"time"

log "github.com/Sirupsen/logrus"
"github.com/miekg/dns"
log "github.com/sirupsen/logrus"
"github.com/zmap/zdns"
_ "github.com/zmap/zdns/modules/alookup"
_ "github.com/zmap/zdns/modules/axfr"
Expand Down