Hello community, here is the log from the commit of package bluez-libs checked in at Fri May 25 17:10:30 CEST 2007. -------- --- bluez-libs/bluez-libs.changes 2007-05-10 15:41:11.000000000 +0200 +++ /mounts/work_src_done/STABLE/bluez-libs/bluez-libs.changes 2007-05-25 12:19:22.000000000 +0200 @@ -1,0 +2,6 @@ +Fri May 25 12:19:03 CEST 2007 - seife@suse.de + +- update to v3.11: + * Fix URL data size handling. + +------------------------------------------------------------------- Old: ---- bluez-libs-3.10.tar.gz New: ---- bluez-libs-3.11.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ bluez-libs.spec ++++++ --- /var/tmp/diff_new_pack.Y15518/_old 2007-05-25 17:10:18.000000000 +0200 +++ /var/tmp/diff_new_pack.Y15518/_new 2007-05-25 17:10:18.000000000 +0200 @@ -1,5 +1,5 @@ # -# spec file for package bluez-libs (Version 3.10) +# spec file for package bluez-libs (Version 3.11) # # Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany. # This file and all modifications and additions to the pristine @@ -12,7 +12,7 @@ Name: bluez-libs URL: http://bluez.sourceforge.net -Version: 3.10 +Version: 3.11 Release: 1 Summary: Bluetooth Libraries License: GNU General Public License (GPL) @@ -64,6 +64,9 @@ %doc AUTHORS COPYING INSTALL ChangeLog NEWS README %changelog +* Fri May 25 2007 - seife@suse.de +- update to v3.11: + * Fix URL data size handling. * Thu May 10 2007 - dgollub@suse.de - update to v3.10: * Add version code for Bluetooth 2.1 specification. ++++++ bluez-libs-3.10.tar.gz -> bluez-libs-3.11.tar.gz ++++++ diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/bluez-libs-3.10/ChangeLog new/bluez-libs-3.11/ChangeLog --- old/bluez-libs-3.10/ChangeLog 2007-05-10 08:40:53.000000000 +0200 +++ new/bluez-libs-3.11/ChangeLog 2007-05-24 12:35:15.000000000 +0200 @@ -1,3 +1,6 @@ +ver 3.11: + Fix URL data size handling. + ver 3.10: Add version code for Bluetooth 2.1 specification. Add ESCO_LINK connection type constant. diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/bluez-libs-3.10/configure new/bluez-libs-3.11/configure --- old/bluez-libs-3.10/configure 2007-05-10 09:49:26.000000000 +0200 +++ new/bluez-libs-3.11/configure 2007-05-24 12:50:05.000000000 +0200 @@ -1775,7 +1775,7 @@ # Define the identity of the package. PACKAGE=bluez-libs - VERSION=3.10 + VERSION=3.11 cat >>confdefs.h <<_ACEOF diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/bluez-libs-3.10/configure.in new/bluez-libs-3.11/configure.in --- old/bluez-libs-3.10/configure.in 2007-05-10 08:40:53.000000000 +0200 +++ new/bluez-libs-3.11/configure.in 2007-05-24 12:35:15.000000000 +0200 @@ -1,7 +1,7 @@ AC_PREREQ(2.50) AC_INIT() -AM_INIT_AUTOMAKE(bluez-libs, 3.10) +AM_INIT_AUTOMAKE(bluez-libs, 3.11) AM_CONFIG_HEADER(config.h) AM_MAINTAINER_MODE diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/bluez-libs-3.10/src/Makefile.am new/bluez-libs-3.11/src/Makefile.am --- old/bluez-libs-3.10/src/Makefile.am 2007-05-10 08:40:54.000000000 +0200 +++ new/bluez-libs-3.11/src/Makefile.am 2007-05-24 12:35:15.000000000 +0200 @@ -2,7 +2,7 @@ lib_LTLIBRARIES = libbluetooth.la libbluetooth_la_SOURCES = bluetooth.c hci.c sdp.c -libbluetooth_la_LDFLAGS = -version-info 8:0:6 +libbluetooth_la_LDFLAGS = -version-info 8:1:6 INCLUDES = -I$(top_builddir)/include diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/bluez-libs-3.10/src/Makefile.in new/bluez-libs-3.11/src/Makefile.in --- old/bluez-libs-3.10/src/Makefile.in 2007-05-10 09:49:24.000000000 +0200 +++ new/bluez-libs-3.11/src/Makefile.in 2007-05-24 12:50:03.000000000 +0200 @@ -166,7 +166,7 @@ target_alias = @target_alias@ lib_LTLIBRARIES = libbluetooth.la libbluetooth_la_SOURCES = bluetooth.c hci.c sdp.c -libbluetooth_la_LDFLAGS = -version-info 8:0:6 +libbluetooth_la_LDFLAGS = -version-info 8:1:6 INCLUDES = -I$(top_builddir)/include MAINTAINERCLEANFILES = Makefile.in all: all-am diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/bluez-libs-3.10/src/sdp.c new/bluez-libs-3.11/src/sdp.c --- old/bluez-libs-3.10/src/sdp.c 2007-05-09 08:40:39.000000000 +0200 +++ new/bluez-libs-3.11/src/sdp.c 2007-05-23 19:11:56.000000000 +0200 @@ -695,61 +695,57 @@ break; case SDP_UINT16: u16 = htons(d->val.uint16); - src = (unsigned char *)&u16; + src = (unsigned char *) &u16; data_size = sizeof(uint16_t); break; case SDP_UINT32: u32 = htonl(d->val.uint32); - src = (unsigned char *)&u32; + src = (unsigned char *) &u32; data_size = sizeof(uint32_t); break; case SDP_UINT64: u64 = hton64(d->val.uint64); - src = (unsigned char *)&u64; + src = (unsigned char *) &u64; data_size = sizeof(uint64_t); break; case SDP_UINT128: hton128(&d->val.uint128, &u128); - src = (unsigned char *)&u128; + src = (unsigned char *) &u128; data_size = sizeof(uint128_t); break; case SDP_INT8: case SDP_BOOL: - src = (unsigned char *)&d->val.int8; + src = (unsigned char *) &d->val.int8; data_size = sizeof(int8_t); break; case SDP_INT16: u16 = htons(d->val.int16); - src = (unsigned char *)&u16; + src = (unsigned char *) &u16; data_size = sizeof(int16_t); break; case SDP_INT32: u32 = htonl(d->val.int32); - src = (unsigned char *)&u32; + src = (unsigned char *) &u32; data_size = sizeof(int32_t); break; case SDP_INT64: u64 = hton64(d->val.int64); - src = (unsigned char *)&u64; + src = (unsigned char *) &u64; data_size = sizeof(int64_t); break; case SDP_INT128: hton128(&d->val.int128, &u128); - src = (unsigned char *)&u128; + src = (unsigned char *) &u128; data_size = sizeof(uint128_t); break; case SDP_TEXT_STR8: case SDP_TEXT_STR16: case SDP_TEXT_STR32: - src = (unsigned char *)d->val.str; - data_size = d->unitSize - sizeof(uint8_t); - sdp_set_seq_len(seqp, data_size); - break; case SDP_URL_STR8: case SDP_URL_STR16: case SDP_URL_STR32: - src = (unsigned char *)d->val.str; - data_size = strlen(d->val.str); + src = (unsigned char *) d->val.str; + data_size = d->unitSize - sizeof(uint8_t); sdp_set_seq_len(seqp, data_size); break; case SDP_SEQ8: @@ -768,16 +764,16 @@ break; case SDP_UUID16: u16 = htons(d->val.uuid.value.uuid16); - src = (unsigned char *)&u16; + src = (unsigned char *) &u16; data_size = sizeof(uint16_t); break; case SDP_UUID32: u32 = htonl(d->val.uuid.value.uuid32); - src = (unsigned char *)&u32; + src = (unsigned char *) &u32; data_size = sizeof(uint32_t); break; case SDP_UUID128: - src = (unsigned char *)&d->val.uuid.value.uuid128; + src = (unsigned char *) &d->val.uuid.value.uuid128; data_size = sizeof(uint128_t); break; default: ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 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@Hilbert.suse.de