Projects
osmocom:nightly
open5gs
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 1358
View file
open5gs_2.7.6.4902.c36a.202603101800.dsc -> open5gs_2.7.6.4904.9242.202603111800.dsc
Changed
@@ -2,7 +2,7 @@ Source: open5gs Binary: open5gs-common, open5gs-mme, open5gs-sgwc, open5gs-smf, open5gs-amf, open5gs-sgwu, open5gs-upf, open5gs-hss, open5gs-pcrf, open5gs-nrf, open5gs-scp, open5gs-sepp, open5gs-ausf, open5gs-udm, open5gs-pcf, open5gs-nssf, open5gs-bsf, open5gs-udr, open5gs, open5gs-dbg Architecture: any -Version: 2.7.6.4902.c36a.202603101800 +Version: 2.7.6.4904.9242.202603111800 Maintainer: Harald Welte <laforge@gnumonks.org> Uploaders: Sukchan Lee <acetcom@gmail.com> Homepage: https://open5gs.org @@ -32,8 +32,8 @@ open5gs-udr deb net optional arch=any open5gs-upf deb net optional arch=any Checksums-Sha1: - 48934c61b0e57d4d07691247871f7eb4d8709f0a 15131768 open5gs_2.7.6.4902.c36a.202603101800.tar.xz + 36fbaa95b36fd88a3e71cfeec58804b0f0dca045 15131184 open5gs_2.7.6.4904.9242.202603111800.tar.xz Checksums-Sha256: - 902c6a372a0309c2c59237b6f34da0d03598d918cefa416ae97a82a81fd03eee 15131768 open5gs_2.7.6.4902.c36a.202603101800.tar.xz + 73f884f2e1744a2de343c09c1353124273c5f933fbf42c6caa14d1de82c4411e 15131184 open5gs_2.7.6.4904.9242.202603111800.tar.xz Files: - 1cdca524766ffe125378b6b9ee8d5ee4 15131768 open5gs_2.7.6.4902.c36a.202603101800.tar.xz + 979cdea07f01b67d34a2bcac1af685a1 15131184 open5gs_2.7.6.4904.9242.202603111800.tar.xz
View file
open5gs_2.7.6.4902.c36a.202603101800.tar.xz/.tarball-version -> open5gs_2.7.6.4904.9242.202603111800.tar.xz/.tarball-version
Changed
@@ -1 +1 @@ -2.7.6.4902-c36a.202603101800 +2.7.6.4904-9242.202603111800
View file
open5gs_2.7.6.4902.c36a.202603101800.tar.xz/debian/changelog -> open5gs_2.7.6.4904.9242.202603111800.tar.xz/debian/changelog
Changed
@@ -1,8 +1,8 @@ -open5gs (2.7.6.4902.c36a.202603101800) unstable; urgency=medium +open5gs (2.7.6.4904.9242.202603111800) unstable; urgency=medium * Automatically generated changelog entry for building the Osmocom nightly feed - -- Osmocom OBS scripts <info@osmocom.org> Tue, 10 Mar 2026 18:02:02 +0000 + -- Osmocom OBS scripts <info@osmocom.org> Wed, 11 Mar 2026 18:01:55 +0000 open5gs (2.7.6) unstable; urgency=medium
View file
open5gs_2.7.6.4902.c36a.202603101800.tar.xz/src/mme/mme-context.c -> open5gs_2.7.6.4904.9242.202603111800.tar.xz/src/mme/mme-context.c
Changed
@@ -5006,7 +5006,7 @@ ogs_assert(list1->taij.type == OGS_TAI1_TYPE); ogs_assert(list1->taij.num <= OGS_MAX_NUM_OF_TAI); - if (memcmp(&list0->taij.plmn_id, + if (memcmp(&list1->taij.plmn_id, &tai->plmn_id, OGS_PLMN_ID_LEN) == 0 && list1->taij.tac <= tai->tac && tai->tac < (list1->taij.tac+list1->taij.num))
View file
open5gs_2.7.6.4902.c36a.202603101800.tar.xz/src/smf/gx-path.c -> open5gs_2.7.6.4904.9242.202603111800.tar.xz/src/smf/gx-path.c
Changed
@@ -1,5 +1,5 @@ /* Gx Interface, 3GPP TS 29.212 section 4 - * Copyright (C) 2019-2025 by Sukchan Lee <acetcom@gmail.com> + * Copyright (C) 2019-2026 by Sukchan Lee <acetcom@gmail.com> * * This file is part of Open5GS. * @@ -776,7 +776,10 @@ /* Search the session, retrieve its data */ ret = fd_msg_sess_get(fd_g_config->cnf_dict, *msg, &session, &new); ogs_assert(ret == 0); - ogs_assert(new == 0); + if (new != 0) { + ogs_error("Session should already exist, but new session flag is set"); + goto cleanup; + } ogs_debug(" Search the session");
View file
open5gs_2.7.6.4902.c36a.202603101800.tar.xz/src/smf/gy-path.c -> open5gs_2.7.6.4904.9242.202603111800.tar.xz/src/smf/gy-path.c
Changed
@@ -1,7 +1,7 @@ /* Gy Interface, 3GPP TS 32.299 * Copyright (C) 2019 by Sukchan Lee <acetcom@gmail.com> * Copyright (C) 2022 by sysmocom - s.f.m.c. GmbH <info@sysmocom.de> - * Copyright (C) 2025 by Sukchan Lee <acetcom@gmail.com> + * Copyright (C) 2025-2026 by Sukchan Lee <acetcom@gmail.com> * * This file is part of Open5GS. * @@ -1006,7 +1006,10 @@ /* Search the session, retrieve its data */ ret = fd_msg_sess_get(fd_g_config->cnf_dict, *msg, &session, &new); ogs_assert(ret == 0); - ogs_assert(new == 0); + if (new != 0) { + ogs_error("Session should already exist, but new session flag is set"); + goto cleanup; + } ogs_debug(" Search the Gy session");
View file
open5gs_2.7.6.4902.c36a.202603101800.tar.xz/src/smf/s6b-path.c -> open5gs_2.7.6.4904.9242.202603111800.tar.xz/src/smf/s6b-path.c
Changed
@@ -1,5 +1,5 @@ /* 3GPP TS 29.273 section 9 - * Copyright (C) 2019-2025 by Sukchan Lee <acetcom@gmail.com> + * Copyright (C) 2019-2026 by Sukchan Lee <acetcom@gmail.com> * * This file is part of Open5GS. * @@ -387,7 +387,10 @@ /* Search the session, retrieve its data */ ret = fd_msg_sess_get(fd_g_config->cnf_dict, *msg, &session, &new); ogs_assert(ret == 0); - ogs_assert(new == 0); + if (new != 0) { + ogs_error("Session should already exist, but new session flag is set"); + goto cleanup; + } ogs_debug(" Search the session"); @@ -730,7 +733,10 @@ /* Search the session, retrieve its data */ ret = fd_msg_sess_get(fd_g_config->cnf_dict, *msg, &session, &new); ogs_assert(ret == 0); - ogs_assert(new == 0); + if (new != 0) { + ogs_error("Session should already exist, but new session flag is set"); + goto cleanup; + } ogs_debug(" Search the session");
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
.