git » chasquid » commit fdaca0b

courier: Fix small typo in smtp.go's trace

author Alberto Bertogli
2016-10-01 17:09:55 UTC
committer Alberto Bertogli
2016-10-09 23:51:04 UTC
parent 2f2d1f2dbdf4e9ff2522551f508ea23ae7c03dab

courier: Fix small typo in smtp.go's trace

internal/courier/smtp.go +1 -1

diff --git a/internal/courier/smtp.go b/internal/courier/smtp.go
index 28f2206..f106a39 100644
--- a/internal/courier/smtp.go
+++ b/internal/courier/smtp.go
@@ -36,7 +36,7 @@ type SMTP struct {
 }
 
 func (s *SMTP) Deliver(from string, to string, data []byte) (error, bool) {
-	tr := trace.New("goingSMTP", "Deliver")
+	tr := trace.New("SMTP", "Deliver")
 	defer tr.Finish()
 	tr.LazyPrintf("%s  ->  %s", from, to)