aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGravatar Szymon Tomasz Stefanek2011-04-04 03:37:32 +0000
committerGravatar Szymon Tomasz Stefanek2011-04-04 03:37:32 +0000
commit7215235502596d3fa60453ca27370624adecf5be (patch)
treeb0f25baa0152fca571aa76b17557c31ac60441c2 /src
parentupdated sourcesdate, to force an help index rebuild (diff)
downloadKVIrc-7215235502596d3fa60453ca27370624adecf5be.tar.gz
KVIrc-7215235502596d3fa60453ca27370624adecf5be.tar.bz2
KVIrc-7215235502596d3fa60453ca27370624adecf5be.zip
Clarify an error message in the http engine
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@5743 17fca916-40b9-46aa-a4ea-0a15b648b75c
Diffstat (limited to 'src')
-rw-r--r--src/kvilib/net/KviHttpRequest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/kvilib/net/KviHttpRequest.cpp b/src/kvilib/net/KviHttpRequest.cpp
index 34a6dfe8f..9cbd3a3f8 100644
--- a/src/kvilib/net/KviHttpRequest.cpp
+++ b/src/kvilib/net/KviHttpRequest.cpp
@@ -735,7 +735,7 @@ bool KviHttpRequest::processHeader(KviCString &szHeader)
if((m_uMaxContentLength > 0) && (m_uTotalSize > ((unsigned int)m_uMaxContentLength)))
{
resetInternalStatus();
- m_szLastError=__tr2qs("Stream exceeding maximum length");
+ m_szLastError=__tr2qs("The amount of received data exceeds the maximum length");
emit terminated(false);
return false;
}