summaryrefslogtreecommitdiffstats
path: root/examples/network
diff options
context:
space:
mode:
Diffstat (limited to 'examples/network')
-rw-r--r--examples/network/mail/smtp.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/network/mail/smtp.cpp b/examples/network/mail/smtp.cpp
index 43a2cf24..3a288fc0 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" ) );