Projects
osmocom:latest
libosmocore
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 13
View file
libosmocore.spec
Changed
@@ -14,13 +14,13 @@ Name: libosmocore Requires: osmocom-latest -Version: 1.11.0 +Version: 1.11.1 Release: 0 Summary: The Open Source Mobile Communications Core Library License: GPL-2.0-only AND GPL-2.0-or-later AND LGPL-2.1-or-later AND AGPL-3.0-or-later Group: Productivity/Telephony/Utilities Url: https://osmocom.org/projects/libosmocore/wiki/Libosmocore -Source: libosmocore_1.11.0.tar.xz +Source: libosmocore_1.11.1.tar.xz Source1: rpmlintrc BuildRequires: automake >= 1.6 BuildRequires: libtool >= 2
View file
libosmocore_1.11.0.dsc -> libosmocore_1.11.1.dsc
Changed
@@ -2,7 +2,7 @@ Source: libosmocore Binary: libosmocore, libosmocodec4, libosmocodec-doc, libosmocoding0, libosmocoding-doc, libosmocore22, libosmocore-doc, libosmogb14, libosmogb-doc, libosmogsm20, libosmogsm-doc, libosmoisdn0, libosmoisdn-doc, libosmovty13, libosmovty-doc, libosmoctrl0, libosmoctrl-doc, libosmosim2, libosmosim-doc, libosmousb0, libosmousb-doc, libosmocore-dev, libosmocore-utils, libosmocore-dbg Architecture: any all -Version: 1.11.0 +Version: 1.11.1 Maintainer: Osmocom team <openbsc@lists.osmocom.org> Homepage: https://projects.osmocom.org/projects/libosmocore Standards-Version: 3.9.8 @@ -35,8 +35,8 @@ libosmovty-doc deb doc optional arch=all libosmovty13 deb libs optional arch=any Checksums-Sha1: - b63fcf3280a189c490668d0991667b3423224251 1124948 libosmocore_1.11.0.tar.xz + a128194c573a747aec159d651a6caf37d74bef17 1125744 libosmocore_1.11.1.tar.xz Checksums-Sha256: - fce48b56fe3444260196289af5e458413eee60d2ba9d8e58b924748d0b5b7d9a 1124948 libosmocore_1.11.0.tar.xz + 13b34fb3e916f40c72d691c6572973e568e2126cba35359a32434953c8df7012 1125744 libosmocore_1.11.1.tar.xz Files: - 5650fa0361975d704fdbd8aad02ee66b 1124948 libosmocore_1.11.0.tar.xz + 5806f9abe8673961a5ceed263ba04247 1125744 libosmocore_1.11.1.tar.xz
View file
libosmocore_1.11.0.tar.xz/.tarball-version -> libosmocore_1.11.1.tar.xz/.tarball-version
Changed
@@ -1 +1 @@ -1.11.0 +1.11.1
View file
libosmocore_1.11.0.tar.xz/debian/changelog -> libosmocore_1.11.1.tar.xz/debian/changelog
Changed
@@ -1,3 +1,12 @@ +libosmocore (1.11.1) unstable; urgency=medium + + Pau Espin Pedrol + * tests: soft_uart: Fix printf int type format + * lapd: Take talloc msgb ownership when enqueueing it + * lapdm: Take talloc msgb ownership when enqueueing it + + -- Vadim Yanitskiy <vyanitskiy@sysmocom.de> Tue, 06 May 2025 16:24:20 +0700 + libosmocore (1.11.0) unstable; urgency=medium Mychaela N. Falconia
View file
libosmocore_1.11.0.tar.xz/src/gsm/Makefile.am -> libosmocore_1.11.1.tar.xz/src/gsm/Makefile.am
Changed
@@ -1,7 +1,7 @@ # This is _NOT_ the library release version, it's an API version. # Please read chapter "Library interface versions" of the libtool documentation # before making any modifications: https://www.gnu.org/software/libtool/manual/html_node/Versioning.html -LIBVERSION=22:0:2 +LIBVERSION=22:1:2 AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_builddir)/include AM_CFLAGS = -Wall $(TALLOC_CFLAGS)
View file
libosmocore_1.11.0.tar.xz/src/gsm/lapdm.c -> libosmocore_1.11.1.tar.xz/src/gsm/lapdm.c
Changed
@@ -376,6 +376,8 @@ *msgb_push(msg, 1) = pad; *msgb_push(msg, 1) = link_id; *msgb_push(msg, 1) = chan_nr; + /* Take ownership of msg, since we are keeping it around in this layer: */ + talloc_steal(tall_lapd_ctx, msg); msgb_enqueue(&dl->dl.tx_queue, msg); return 0; } @@ -403,6 +405,8 @@ *msgb_push(msg, 1) = pad; *msgb_push(msg, 1) = link_id; *msgb_push(msg, 1) = chan_nr; + /* Take ownership of msg, since we are keeping it around in this layer: */ + talloc_steal(tall_lapd_ctx, msg); msgb_enqueue(&dl->tx_ui_queue, msg); return 0; }
View file
libosmocore_1.11.0.tar.xz/src/isdn/Makefile.am -> libosmocore_1.11.1.tar.xz/src/isdn/Makefile.am
Changed
@@ -1,7 +1,7 @@ # This is _NOT_ the library release version, it's an API version. # Please read chapter "Library interface versions" of the libtool documentation # before making any modifications: https://www.gnu.org/software/libtool/manual/html_node/Versioning.html -LIBVERSION=2:0:2 +LIBVERSION=2:1:2 AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_builddir)/include AM_CFLAGS = -Wall $(TALLOC_CFLAGS)
View file
libosmocore_1.11.0.tar.xz/src/isdn/lapd_core.c -> libosmocore_1.11.1.tar.xz/src/isdn/lapd_core.c
Changed
@@ -1922,6 +1922,8 @@ LOGDL(dl, LOGL_INFO, "writing message to send-queue: l3len: %d\n", msgb_l3len(msg)); + /* Take ownership of msg, since we are keeping it around in this layer: */ + talloc_steal(tall_lapd_ctx, msg); /* Write data into the send queue */ msgb_enqueue(&dl->send_queue, msg);
View file
libosmocore_1.11.0.tar.xz/tests/soft_uart/soft_uart_test.c -> libosmocore_1.11.1.tar.xz/tests/soft_uart/soft_uart_test.c
Changed
@@ -389,14 +389,14 @@ g_tx_cb_cfg.data = (void *)"\x55"; g_tx_cb_cfg.data_len = 1; - printf("======== pulling %lu bits (%u at a time)\n", sizeof(tx_buf), n); + printf("======== pulling %zu bits (%u at a time)\n", sizeof(tx_buf), n); for (unsigned int i = 0; i < sizeof(tx_buf); i += n) { rc = osmo_soft_uart_tx_ubits(suart, &tx_bufi, n); OSMO_ASSERT(rc == n); } printf("%s\n", osmo_ubit_dump(&tx_buf0, sizeof(tx_buf))); - printf("======== feeding %lu bits into the receiver\n", sizeof(tx_buf)); + printf("======== feeding %zu bits into the receiver\n", sizeof(tx_buf)); rc = osmo_soft_uart_rx_ubits(suart, &tx_buf0, sizeof(tx_buf)); OSMO_ASSERT(rc == 0); osmo_soft_uart_flush_rx(suart);
Locations
Projects
Search
Status Monitor
Help
Open Build Service
OBS Manuals
API Documentation
OBS Portal
Reporting a Bug
Contact
Mailing List
Forums
Chat (IRC)
Twitter
Open Build Service (OBS)
is an
openSUSE project
.