Hello community, here is the log from the commit of package bluez-utils checked in at Fri Oct 27 20:13:02 CEST 2006. -------- --- bluez-utils/bluez-utils.changes 2006-10-19 19:18:31.000000000 +0200 +++ /mounts/work_src_done/STABLE/bluez-utils/bluez-utils.changes 2006-10-27 20:07:50.000000000 +0200 @@ -1,0 +2,5 @@ +Fri Oct 27 16:41:55 CEST 2006 - dgollub@suse.de + +- fixed multibyte character problem with storing device names + +------------------------------------------------------------------- New: ---- bluez-utils-multibyte-fix.diff ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ bluez-utils.spec ++++++ --- /var/tmp/diff_new_pack.RnpNCU/_old 2006-10-27 20:12:43.000000000 +0200 +++ /var/tmp/diff_new_pack.RnpNCU/_new 2006-10-27 20:12:43.000000000 +0200 @@ -14,9 +14,9 @@ BuildRequires: alsa-devel bluez-libs cups dbus-1-devel fuse-devel libusb openobex-devel pkgconfig resmgr xorg-x11-devel URL: http://bluez.sourceforge.net Version: 3.7 -Release: 8 +Release: 13 Summary: Bluetooth Daemons and Utilities -License: Other License(s), see package +License: GNU General Public License (GPL) - all versions PreReq: %fillup_prereq %insserv_prereq Group: Hardware/Mobile Autoreqprov: on @@ -33,6 +33,7 @@ Patch3: bluez-utils-3.6.1-hcid.conf.diff Patch4: bluez-utils-3.4-bluetooth.rules.diff Patch5: bluez-utils-3.4-passkey-agent-warning.diff +Patch6: bluez-utils-multibyte-fix.diff BuildRoot: %{_tmppath}/%{name}-%{version}-build Requires: bluez-libs >= %( echo `rpm -q --queryformat '%{VERSION}-%{RELEASE}' bluez-libs`) Requires: sysvinit @@ -61,7 +62,7 @@ %package -n bluez-cups Group: Hardware/Printing -License: Other License(s), see package +License: GNU General Public License (GPL) - all versions Summary: CUPS Driver for Bluetooth Printers Requires: bluez-libs >= %( echo `rpm -q --queryformat '%{VERSION}-%{RELEASE}' bluez-libs`) @@ -77,7 +78,7 @@ %package -n bluez-test Group: Development/Tools/Debuggers -License: Other License(s), see package, X11/MIT +License: GNU General Public License (GPL) - all versions, X11/MIT Summary: Tools for testing of various Bluetooth-functions Requires: bluez-libs >= %( echo `rpm -q --queryformat '%{VERSION}-%{RELEASE}' bluez-libs`) python-gobject2 @@ -97,6 +98,7 @@ %patch3 -p0 %patch4 -p0 %patch5 -p0 +%patch6 %{?suse_update_config:%{suse_update_config -f . }} cd ../opd %patch1 -p1 @@ -259,6 +261,8 @@ %doc %{_defaultdocdir}/bluez-test %changelog -n bluez-utils +* Fri Oct 27 2006 - dgollub@suse.de +- fixed multibyte character problem with storing device names * Thu Oct 19 2006 - seife@suse.de - add back lost python-gobject2 requires to dbus-test * Thu Oct 19 2006 - seife@suse.de ++++++ bluez-utils-multibyte-fix.diff ++++++ --- hcid/storage.c +++ hcid/storage.c @@ -121,7 +121,7 @@ memset(str, 0, sizeof(str)); for (i = 0; i < 248 && name[i]; i++) - if (name[i] < 32 || name[i] == 127) + if ((unsigned char) name[i] < 32 || name[i] == 127) str[i] = '.'; else str[i] = name[i]; @@ -232,7 +232,7 @@ memset(str, 0, sizeof(str)); for (i = 0; i < 248 && name[i]; i++) - if (name[i] < 32 || name[i] == 127) + if ((unsigned char) name[i] < 32 || name[i] == 127) str[i] = '.'; else str[i] = name[i]; ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Remember to have fun... --------------------------------------------------------------------- To unsubscribe, e-mail: opensuse-commit+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-commit+help@opensuse.org
participants (1)
-
root@suse.de