Ver código fonte

Fix whitespace

Bernhard Froehlich 6 anos atrás
pai
commit
6427f0ec23
1 arquivos alterados com 2 adições e 2 exclusões
  1. 2 2
      main.go

+ 2 - 2
main.go

@@ -43,9 +43,9 @@ func connectionChecker(peer smtpd.Peer) error {
 		return smtpd.Error{Code: 552, Message: "Denied"}
 	}
 
-        nets := strings.Split(*allowedNets, " ")
+	nets := strings.Split(*allowedNets, " ")
 
-        for i := range(nets) {
+	for i := range(nets) {
 		_, allowedNet, _ := net.ParseCIDR(nets[i])
 
 		if allowedNet.Contains(peerIP) {