mirror of
https://github.com/mjl-/mox.git
synced 2025-07-12 13:44:37 +03:00
change error value "fatal io error" to just "io error"
"fatal" was meant as "we need fatal for the connection, it will be dropped". but it sounds more serious, as if something needs to be fixed. hopefully enough for issue #39 by ArnoSen
This commit is contained in:
@ -288,8 +288,8 @@ var commands = map[string]func(c *conn, tag, cmd string, p *parser){
|
||||
"uid move": (*conn).cmdUIDMove,
|
||||
}
|
||||
|
||||
var errIO = errors.New("fatal io error") // For read/write errors and errors that should close the connection.
|
||||
var errProtocol = errors.New("fatal protocol error") // For protocol errors for which a stack trace should be printed.
|
||||
var errIO = errors.New("io error") // For read/write errors and errors that should close the connection.
|
||||
var errProtocol = errors.New("protocol error") // For protocol errors for which a stack trace should be printed.
|
||||
|
||||
var sanityChecks bool
|
||||
|
||||
|
Reference in New Issue
Block a user