diff options
author | Sven Wegener <swegener@gentoo.org> | 2005-02-17 02:14:38 +0000 |
---|---|---|
committer | Sven Wegener <swegener@gentoo.org> | 2005-02-17 02:14:38 +0000 |
commit | 0854d08bf5201e869576dcde0fcc06b79961f3cd (patch) | |
tree | 5a9cc44611871efeac5990069560f44c7b6ce370 /net-nntp/klibido/files | |
parent | version bump to 1.4.0_beta6; although fixed bug #81671 for 1.4x line (diff) | |
download | historical-0854d08bf5201e869576dcde0fcc06b79961f3cd.tar.gz historical-0854d08bf5201e869576dcde0fcc06b79961f3cd.tar.bz2 historical-0854d08bf5201e869576dcde0fcc06b79961f3cd.zip |
Revision bump to include two upsream patches. Thanks to Richard Fujimoto <rfujimoto@imap.cc> in bug #79915.
Package-Manager: portage-2.0.51.16
Diffstat (limited to 'net-nntp/klibido/files')
-rw-r--r-- | net-nntp/klibido/files/0.2.0-nntpthreadsocket.cpp.diff | 19 | ||||
-rw-r--r-- | net-nntp/klibido/files/0.2.0-qmgr.cpp.diff | 11 | ||||
-rw-r--r-- | net-nntp/klibido/files/digest-klibido-0.2.0-r1 | 1 |
3 files changed, 31 insertions, 0 deletions
diff --git a/net-nntp/klibido/files/0.2.0-nntpthreadsocket.cpp.diff b/net-nntp/klibido/files/0.2.0-nntpthreadsocket.cpp.diff new file mode 100644 index 000000000000..d824c25e5abe --- /dev/null +++ b/net-nntp/klibido/files/0.2.0-nntpthreadsocket.cpp.diff @@ -0,0 +1,19 @@ +--- src/nntpthreadsocket.cpp 2004-11-17 00:04:18.000000000 +0100 ++++ src/nntpthreadsocket.cpp.fixed 2005-01-04 14:59:07.460083575 +0100 +@@ -1983,14 +1983,14 @@ + if (!m_sendCmd(cmd, NntpThreadSocket::list)) + return false; + +- while (!(cancel) && line[0] != '.') { ++ while (!(line[0] == '.') && !(line[1] == '\0') ) { + if (!waitLine()) + return false; + + + + while (m_readLine()) { +- if (line[0] == '.') ++ if ( (line[0] == '.') && (line[1] == '\0') ) + break; + else { + diff --git a/net-nntp/klibido/files/0.2.0-qmgr.cpp.diff b/net-nntp/klibido/files/0.2.0-qmgr.cpp.diff new file mode 100644 index 000000000000..c0736f4a2e1b --- /dev/null +++ b/net-nntp/klibido/files/0.2.0-qmgr.cpp.diff @@ -0,0 +1,11 @@ +--- src/qmgr.cpp 2004-11-17 00:04:19.000000000 +0100 ++++ src/qmgr.cpp.fixed 2004-12-28 01:36:08.634618228 +0100 +@@ -2177,7 +2177,7 @@ + memset(&key, 0, sizeof(key)); + key.set_flags(DB_DBT_MALLOC); + memset(&data, 0, sizeof(data)); +- key.set_flags(DB_DBT_MALLOC); ++ data.set_flags(DB_DBT_MALLOC); + // qDebug("Id: %d", id); + // qDebug("Newsgroup: %s", qsi->group.latin1()); + // qDebug("index: %s", qsi->index.latin1()); diff --git a/net-nntp/klibido/files/digest-klibido-0.2.0-r1 b/net-nntp/klibido/files/digest-klibido-0.2.0-r1 new file mode 100644 index 000000000000..9015f3480eea --- /dev/null +++ b/net-nntp/klibido/files/digest-klibido-0.2.0-r1 @@ -0,0 +1 @@ +MD5 d4851385b333ddf8970ac24955ea4c48 klibido-0.2.0.tar.gz 756394 |