Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
joohoi committed Mar 1, 2018
1 parent 1e3553d commit 89f0b38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion acmetxt.go
Expand Up @@ -48,7 +48,7 @@ func (a ACMETxt) allowedFrom(ip string) bool {
if len(a.AllowFrom.ValidEntries()) == 0 {
return true
}
log.WithFields(log.Fields{"ip": remoteIP}).Debug("Checking if update allowed is from IP")
log.WithFields(log.Fields{"ip": remoteIP}).Debug("Checking if update is permitted from IP")
for _, v := range a.AllowFrom.ValidEntries() {
_, vnet, _ := net.ParseCIDR(v)
if vnet.Contains(remoteIP) {
Expand Down

0 comments on commit 89f0b38

Please sign in to comment.