diff --git a/smtp.go b/smtp.go index bce7144..c7557c3 100644 --- a/smtp.go +++ b/smtp.go @@ -473,7 +473,7 @@ func (a *loginAuth) Next(fromServer []byte, more bool) ([]byte, error) { case "Password:": return []byte(a.password), nil default: - return nil, errors.New("Unkown fromServer") + return nil, errors.New("Unknown fromServer") } } return nil, nil