diff options
| author | Don Sanders <don.sanders@nokia.com> | 2010-08-08 23:57:20 +1000 |
|---|---|---|
| committer | Don Sanders <don.sanders@nokia.com> | 2010-08-08 23:57:20 +1000 |
| commit | 082dc29cf4ff41af81bf51ba928352a58e548187 (patch) | |
| tree | 8826ad3bc95093c7b3f3b84b11dbaed991242a1d | |
| parent | b843953f98b7edeecd75a3ba4272863028740ef6 (diff) | |
Fix typo.
| -rw-r--r-- | src/plugins/messageservices/smtp/smtpauthenticator.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/messageservices/smtp/smtpauthenticator.cpp b/src/plugins/messageservices/smtp/smtpauthenticator.cpp index a6170bc0..a58e06e3 100644 --- a/src/plugins/messageservices/smtp/smtpauthenticator.cpp +++ b/src/plugins/messageservices/smtp/smtpauthenticator.cpp @@ -56,7 +56,7 @@ QByteArray SmtpAuthenticator::getAuthentication(const QMailAccountConfiguration: { QByteArray result(QMailAuthenticator::getAuthentication(svcCfg, capabilities)); if (!result.isEmpty()) - return result; + return result.prepend("AUTH ");; #ifndef QT_NO_OPENSSL SmtpConfiguration smtpCfg(svcCfg); |
