summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjvdias <jvdias@fedoraproject.org>2005-10-06 18:04:00 +0000
committerjvdias <jvdias@fedoraproject.org>2005-10-06 18:04:00 +0000
commit536814d55542477809cd9a8bfd8941020871a8a1 (patch)
tree6da6ecd42fe0981c11b1b498872c70de6bdc8d83
parent39068240347d2f9b9b8c9d79a285bd4be750fe85 (diff)
downloadbind-536814d55542477809cd9a8bfd8941020871a8a1.tar.gz
bind-536814d55542477809cd9a8bfd8941020871a8a1.tar.xz
bind-536814d55542477809cd9a8bfd8941020871a8a1.zip
fix bug 169969: do not call dbus_svc_dispatch in dbus_mgr_svc_initbind-9_3_1-18
-rw-r--r--bind.spec13
1 files changed, 10 insertions, 3 deletions
diff --git a/bind.spec b/bind.spec
index 7ed6813..3a8d86d 100644
--- a/bind.spec
+++ b/bind.spec
@@ -1,4 +1,4 @@
-%define debug_package %{nil}
+#%define debug_package %{nil}
%define posix_threads 0
%{?!SDB: %define SDB 1}
%{?!LIBBIND:%define LIBBIND 1}
@@ -10,7 +10,7 @@ Summary: The Berkeley Internet Name Domain (BIND) DNS (Domain Name System) serve
Name: bind
License: BSD-like
Version: 9.3.1
-Release: 16
+Release: 18
Epoch: 24
Url: http://www.isc.org/products/BIND/
Buildroot: %{_tmppath}/%{name}-root
@@ -345,7 +345,9 @@ cp -fp config.h $RPM_BUILD_ROOT/%{_includedir}/bind9
cp -fp lib/dns/include/dns/forward.h $RPM_BUILD_ROOT/%{_includedir}/dns
cp -fp lib/isc/unix/include/isc/keyboard.h $RPM_BUILD_ROOT/%{_includedir}/isc
cp -fp lib/isc/include/isc/hash.h $RPM_BUILD_ROOT/%{_includedir}/isc
-exit 0;
+# exit 0;
+# uncomment to prevent stripping / debuginfo
+:;
%pre
/usr/sbin/groupadd -g 25 named >/dev/null 2>&1 || :;
@@ -719,6 +721,11 @@ fi;
:;
%changelog
+* Thu Oct 06 2005 Jason Vas Dias <jvdias@redhat.com> - 24:9.3.1-18
+- fix bug 169969: do NOT call dbus_svc_dispatch() in dbus_mgr_init_dbus() -
+ task->state != task_ready and will cause Abort in task.c if process
+ is waiting for NameOwnerChanged to do a SetForwarders
+
* Wed Oct 05 2005 Jason Vas Dias <jvdias@redhat.com> - 24:9.3.1-16
- Fix reconnecting to dbus-daemon after it stops & restarts .