Skip to content

Commit

Permalink
Sirupsen dependency case-sensitivity handling
Browse files Browse the repository at this point in the history
Switch `github.com/Sirupsen/logrus` → `github.com/sirupsen/logrus`

Rename was handled in sirupsen/logrus#384
in November 2016.
  • Loading branch information
philpennock committed Aug 25, 2017
1 parent bb670ca commit 72df139
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -147,4 +147,4 @@ within an OS-less Jail. An `rc.d` script is included.

[RFC742]: https://tools.ietf.org/html/rfc742 "RFC 742: NAME/FINGER"
[AttackSurface]: ./AttackSurface.md
[logrus]: https://github.com/Sirupsen/logrus "logrus: Structured, pluggable logging for Go"
[logrus]: https://github.com/sirupsen/logrus "logrus: Structured, pluggable logging for Go"
2 changes: 1 addition & 1 deletion aliases.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
"strings"
"sync"

"github.com/Sirupsen/logrus"
"github.com/sirupsen/logrus"
"gopkg.in/fsnotify.v1"
)

Expand Down
2 changes: 1 addition & 1 deletion drop_privs.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import (
"sync"
"syscall"

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

const envKeyFdPassing = "FINGERD_fdstatus"
Expand Down
2 changes: 1 addition & 1 deletion listener.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import (
"sync"
"time"

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

// TCPFingerListener wraps up everything around listening for connections on a
Expand Down
6 changes: 3 additions & 3 deletions logging_setup.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ import (
"strings"
"time"

"github.com/Sirupsen/logrus"
logrus_syslog "github.com/Sirupsen/logrus/hooks/syslog"
"github.com/sirupsen/logrus"
logrus_syslog "github.com/sirupsen/logrus/hooks/syslog"
)

var logOpts struct {
Expand All @@ -33,7 +33,7 @@ func init() {
}

// setupLogging should be changed to add whatever remote logging you want;
// <https://github.com/Sirupsen/logrus> lists a variety of supported hooks for
// <https://github.com/sirupsen/logrus> lists a variety of supported hooks for
// remote logging, whether into corporate log services, cloud log services,
// chat services, email, error/exception aggregation services or whatever else.
//
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import (
"syscall"
"time"

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

// I initially set 64 and in my first tests hit this because of an 84K .pubkey
Expand Down
2 changes: 1 addition & 1 deletion reaper.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"syscall"
"time"

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

// We expect to be the only process running inside a jail/container, so we
Expand Down
2 changes: 1 addition & 1 deletion users.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
"strings"
"syscall"

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

type fingerUser struct {
Expand Down

0 comments on commit 72df139

Please sign in to comment.