diff options
author | Sven Wegener <swegener@gentoo.org> | 2005-05-20 05:22:18 +0000 |
---|---|---|
committer | Sven Wegener <swegener@gentoo.org> | 2005-05-20 05:22:18 +0000 |
commit | 8a7f9c7c3d9907f7d3ecbd46049b9a6a2cd33b20 (patch) | |
tree | 6c05dbe9ea2e0cee91dd6cd4b90d24e638b6b4f3 /net-nntp/klibido/files | |
parent | Manual Manifest commit. (diff) | |
download | historical-8a7f9c7c3d9907f7d3ecbd46049b9a6a2cd33b20.tar.gz historical-8a7f9c7c3d9907f7d3ecbd46049b9a6a2cd33b20.tar.bz2 historical-8a7f9c7c3d9907f7d3ecbd46049b9a6a2cd33b20.zip |
Revision bump to pull in a patch from upstream developers that fixes bug #93265.
Package-Manager: portage-2.0.51.22-r1
Diffstat (limited to 'net-nntp/klibido/files')
-rw-r--r-- | net-nntp/klibido/files/0.2.3-availablegroups.patch | 24 | ||||
-rw-r--r-- | net-nntp/klibido/files/digest-klibido-0.2.3-r1 (renamed from net-nntp/klibido/files/digest-klibido-0.2.3) | 0 |
2 files changed, 24 insertions, 0 deletions
diff --git a/net-nntp/klibido/files/0.2.3-availablegroups.patch b/net-nntp/klibido/files/0.2.3-availablegroups.patch new file mode 100644 index 000000000000..877b7761e6cd --- /dev/null +++ b/net-nntp/klibido/files/0.2.3-availablegroups.patch @@ -0,0 +1,24 @@ +--- src/availablegroups.cpp 2005-03-01 01:58:57.000000000 +0100 ++++ src/availablegroups.cpp.fixed 2005-05-18 10:58:03.000000000 +0200 +@@ -30,8 +30,9 @@ + int ret; + if ((ret=groupDb->open(NULL, dbName, NULL, DB_BTREE, DB_CREATE | DB_THREAD, 0644)) != 0) + qDebug("Error opening database: %s", dbEnv->strerror(ret)); ++ else qDebug("AvailableGroups database opened"); + updating=false; +- ++ m_view=0; + + + } +@@ -77,7 +78,9 @@ + data=new Dbt; + Dbc *cursor; + Group *g; +- groupDb->cursor(NULL, &cursor, 0); ++ if (groupDb->cursor(NULL, &cursor, 0)) ++ kdDebug() << "Error opening cursor\n"; ++ else kdDebug() << "Cursor openend\n"; + int ret; + int count=0; + KListViewItem *item; diff --git a/net-nntp/klibido/files/digest-klibido-0.2.3 b/net-nntp/klibido/files/digest-klibido-0.2.3-r1 index d1761e10eed2..d1761e10eed2 100644 --- a/net-nntp/klibido/files/digest-klibido-0.2.3 +++ b/net-nntp/klibido/files/digest-klibido-0.2.3-r1 |