summaryrefslogtreecommitdiffstats
path: root/mimelib
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-09-18 23:43:22 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-09-18 23:43:22 +0000
commitbd4d40e62f0ade42fbc594c1c87dfc93dfab8c99 (patch)
tree0846110ee822a57b2b7d9f08422282b03f0504b5 /mimelib
parent3bbd9f8c37af59661292e14ec82088ffb09195e2 (diff)
downloadtdepim-bd4d40e62f0ade42fbc594c1c87dfc93dfab8c99.tar.gz
tdepim-bd4d40e62f0ade42fbc594c1c87dfc93dfab8c99.zip
Fix a number of strings in Trinity that were incorrectly converted to TQ* from Q*
This fixes the Kopete MSN protocol among other things git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1254372 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'mimelib')
-rw-r--r--mimelib/nntp.cpp2
-rw-r--r--mimelib/pop.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/mimelib/nntp.cpp b/mimelib/nntp.cpp
index b6b20917f..0dd9e7768 100644
--- a/mimelib/nntp.cpp
+++ b/mimelib/nntp.cpp
@@ -467,7 +467,7 @@ int DwNntpClient::Quit()
mReplyCode = 0;
mStatusResponse = mTextResponse = "";
mLastCommand = kCmdQuit;
- strlcpy(mSendBuffer, "TQUIT\r\n", SEND_BUFFER_SIZE);
+ strlcpy(mSendBuffer, "QUIT\r\n", SEND_BUFFER_SIZE);
DBG_NNTP_STMT(cout << "C: " << mSendBuffer << flush;)
int bufferLen = strlen(mSendBuffer);
int numSent = PSend(mSendBuffer, bufferLen);
diff --git a/mimelib/pop.cpp b/mimelib/pop.cpp
index 88f9b6540..bec5d60b6 100644
--- a/mimelib/pop.cpp
+++ b/mimelib/pop.cpp
@@ -143,7 +143,7 @@ int DwPopClient::Quit()
mStatusCode = 0;
mSingleLineResponse = mMultiLineResponse = "";
mLastCommand = kCmdQuit;
- strlcpy(mSendBuffer, "TQUIT\r\n", SEND_BUFFER_SIZE);
+ strlcpy(mSendBuffer, "QUIT\r\n", SEND_BUFFER_SIZE);
DBG_POP_STMT(cout << "C: " << mSendBuffer << flush;)
int bufferLen = strlen(mSendBuffer);
int numSent = PSend(mSendBuffer, bufferLen);