summaryrefslogtreecommitdiffstats
path: root/mimelib
diff options
context:
space:
mode:
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 b6b20917..0dd9e776 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 88f9b654..bec5d60b 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);