Projects
osmocom:master
libosmocore
Sign Up
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 294
View file
libosmocore.spec
Changed
@@ -14,13 +14,13 @@ Name: libosmocore Requires: osmocom-master -Version: 1.9.0.112.fb4ce0 +Version: 1.9.0.115.4728 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.9.0.112.fb4ce0.tar.xz +Source: libosmocore_1.9.0.115.4728.tar.xz Source1: rpmlintrc BuildRequires: automake >= 1.6 BuildRequires: libtool >= 2
View file
commit_4728f8c9fa363b54471ba7e32fd47e7ac0b2a234.txt
Added
View file
commit_fb4ce0b029cb52278b8d835c71ce54743226c239.txt
Deleted
View file
libosmocore_1.9.0.112.fb4ce0.dsc -> libosmocore_1.9.0.115.4728.dsc
Changed
@@ -2,7 +2,7 @@ Source: libosmocore Binary: libosmocore, libosmocodec4, libosmocodec-doc, libosmocoding0, libosmocoding-doc, libosmocore21, 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.9.0.112.fb4ce0 +Version: 1.9.0.115.4728 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: - cba4c553a0b9fef28fcc428ce767d7fadb90e8c5 1092252 libosmocore_1.9.0.112.fb4ce0.tar.xz + 4cf858be08b21ff3f352907c7b65680b621fa73f 1091664 libosmocore_1.9.0.115.4728.tar.xz Checksums-Sha256: - 6e06eb5b5b23d1cfb6c68df719021589d217f0c42cf83cfec9a3c0699b37053c 1092252 libosmocore_1.9.0.112.fb4ce0.tar.xz + c051a5b4c0bf6892b93874d1d8342c0b2a280653e7410e40ef1127b6efaf4c96 1091664 libosmocore_1.9.0.115.4728.tar.xz Files: - b5f9776c440136666d816212631df8a5 1092252 libosmocore_1.9.0.112.fb4ce0.tar.xz + c81d1bb139f1475b4dc082491083681d 1091664 libosmocore_1.9.0.115.4728.tar.xz
View file
libosmocore_1.9.0.112.fb4ce0.tar.xz/.tarball-version -> libosmocore_1.9.0.115.4728.tar.xz/.tarball-version
Changed
@@ -1 +1 @@ -1.9.0.112-fb4ce0 +1.9.0.115-4728
View file
libosmocore_1.9.0.112.fb4ce0.tar.xz/debian/changelog -> libosmocore_1.9.0.115.4728.tar.xz/debian/changelog
Changed
@@ -1,8 +1,8 @@ -libosmocore (1.9.0.112.fb4ce0) unstable; urgency=medium +libosmocore (1.9.0.115.4728) unstable; urgency=medium * Automatically generated changelog entry for building the Osmocom master feed - -- Osmocom OBS scripts <info@osmocom.org> Sun, 31 Dec 2023 11:42:39 +0000 + -- Osmocom OBS scripts <info@osmocom.org> Wed, 03 Jan 2024 09:57:22 +0000 libosmocore (1.9.0) unstable; urgency=medium
View file
libosmocore_1.9.0.112.fb4ce0.tar.xz/src/core/bitvec.c -> libosmocore_1.9.0.115.4728.tar.xz/src/core/bitvec.c
Changed
@@ -540,13 +540,11 @@ */ void bitvec_to_string_r(const struct bitvec *bv, char *str) { - unsigned i, pos = 0; char *cur = str; - for (i = 0; i < bv->cur_bit; i++) { + for (unsigned int i = 0; i < bv->cur_bit; i++) { if (0 == i % 8) *cur++ = ' '; *cur++ = bit_value_to_char(bitvec_get_bit_pos(bv, i)); - pos++; } *cur = 0; }
View file
libosmocore_1.9.0.112.fb4ce0.tar.xz/src/core/utils.c -> libosmocore_1.9.0.115.4728.tar.xz/src/core/utils.c
Changed
@@ -147,13 +147,15 @@ */ int osmo_bcd2str(char *dst, size_t dst_size, const uint8_t *bcd, int start_nibble, int end_nibble, bool allow_hex) { - char *dst_end = dst + dst_size - 1; + char *dst_end; int nibble_i; int rc = 0; if (!dst || dst_size < 1 || start_nibble < 0) return -ENOMEM; + dst_end = dst + dst_size - 1; + for (nibble_i = start_nibble; nibble_i < end_nibble && dst < dst_end; nibble_i++, dst++) { uint8_t nibble = bcdnibble_i >> 1; if ((nibble_i & 1))
View file
libosmocore_1.9.0.112.fb4ce0.tar.xz/tests/utils/utils_test.c -> libosmocore_1.9.0.115.4728.tar.xz/tests/utils/utils_test.c
Changed
@@ -1280,9 +1280,6 @@ snprintf(buf, sizeof(buf), "0x2b 0x2b 0x2b..."); printf("4: (need %d chars, had size=0) %s\n", rc, buf); - rc = strbuf_example2(NULL, 99); - printf("5: (need %d chars, had NULL buffer)\n", rc); - printf("\ncascade:\n"); rc = strbuf_cascade(buf, sizeof(buf)); printf("(need %d chars)\n%s\n", rc, buf);
View file
libosmocore_1.9.0.112.fb4ce0.tar.xz/tests/utils/utils_test.ok -> libosmocore_1.9.0.115.4728.tar.xz/tests/utils/utils_test.ok
Changed
@@ -458,7 +458,6 @@ 2: (need 42 chars, had size=42) T minus 10 9 8 7 6 5 4 3 2 1 ... Lift off 3: (need 42 chars, had size=42+1) T minus 10 9 8 7 6 5 4 3 2 1 ... Lift off! 4: (need 42 chars, had size=0) 0x2b 0x2b 0x2b... -5: (need 42 chars, had NULL buffer) cascade: (need 134 chars)
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
.