소스 검색

Fix whitespace

Bernhard Froehlich 6 년 전
부모
커밋
6427f0ec23
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  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) {