rpms/libdbi-drivers/devel libdbi-drivers-error-handler.patch, NONE, 1.1 libdbi-drivers.spec, 1.14, 1.15

Tom Lane tgl at fedoraproject.org
Tue Sep 2 00:19:37 UTC 2008


Author: tgl

Update of /cvs/pkgs/rpms/libdbi-drivers/devel
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv9122

Modified Files:
	libdbi-drivers.spec 
Added Files:
	libdbi-drivers-error-handler.patch 
Log Message:
Fix bug #460734.

libdbi-drivers-error-handler.patch:

--- NEW FILE libdbi-drivers-error-handler.patch ---
Fix bug #460734.


diff -Naur libdbi-drivers-0.8.3/drivers/sqlite3/dbd_sqlite3.c libdbi-drivers-0.8.3-1/drivers/sqlite3/dbd_sqlite3.c
--- libdbi-drivers-0.8.3/drivers/sqlite3/dbd_sqlite3.c	2008-01-15 09:07:24.000000000 -0500
+++ libdbi-drivers-0.8.3-1/drivers/sqlite3/dbd_sqlite3.c	2008-03-03 12:32:26.000000000 -0500
@@ -731,7 +731,7 @@
 				      &errmsg);
 
   if (query_res || !table_numrows) {
-    _dbi_internal_error_handler(conn, NULL, DBI_ERROR_BADNAME);
+    _dbd_internal_error_handler(conn, NULL, DBI_ERROR_BADNAME);
     /*       printf("field not found\n"); */
     return 0;
   }


Index: libdbi-drivers.spec
===================================================================
RCS file: /cvs/pkgs/rpms/libdbi-drivers/devel/libdbi-drivers.spec,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- libdbi-drivers.spec	11 Feb 2008 20:56:56 -0000	1.14
+++ libdbi-drivers.spec	2 Sep 2008 00:19:07 -0000	1.15
@@ -1,13 +1,14 @@
 Summary: Database-specific drivers for libdbi
 Name: libdbi-drivers
 Version: 0.8.3
-Release: 1%{?dist}
+Release: 2%{?dist}
 Group: Development/Libraries
 License: LGPLv2+
 URL: http://libdbi-drivers.sourceforge.net/
 
 Source: http://prdownloads.sourceforge.net/libdbi-drivers/%{name}-%{version}.tar.gz
 Patch1: libdbi-drivers-cflags.patch
+Patch2: libdbi-drivers-error-handler.patch
 
 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
 Requires: libdbi >= 0.8
@@ -66,6 +67,7 @@
 %setup -q -n %{name}-%{version}
 
 %patch1 -p1
+%patch2 -p1
 
 autoconf
 
@@ -120,6 +122,12 @@
 %{_libdir}/dbd/libdbdsqlite3.*
 
 %changelog
+* Mon Sep  1 2008 Tom Lane <tgl at redhat.com> 0.8.3-2
+- Fix mistaken external reference in libdbdsqlite3.so.  (I'm applying this
+  as a patch, rather than updating to upstream's 0.8.3-1, because that isn't
+  acceptable as an RPM Version tag.)
+Resolves: #460734
+
 * Mon Feb 11 2008 Tom Lane <tgl at redhat.com> 0.8.3-1
 - Update to version 0.8.3.
 - Code is now all licensed LGPLv2+, so adjust License tags.




More information about the fedora-extras-commits mailing list