diff options
Diffstat (limited to 'examples/network/mail/smtp.cpp')
-rw-r--r-- | examples/network/mail/smtp.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/network/mail/smtp.cpp b/examples/network/mail/smtp.cpp index 43a2cf249..3a288fc0d 100644 --- a/examples/network/mail/smtp.cpp +++ b/examples/network/mail/smtp.cpp @@ -107,7 +107,7 @@ void Smtp::readyRead() *t << message << ".\r\n"; state = Quit; } else if ( state == Quit && responseLine[0] == '2' ) { - *t << "TQUIT\r\n"; + *t << "QUIT\r\n"; // here, we just close. state = Close; emit status( tr( "Message sent" ) ); |