Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package osmo-e1d for openSUSE:Factory checked in at 2021-05-15 23:16:17 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/osmo-e1d (Old) and /work/SRC/openSUSE:Factory/.osmo-e1d.new.2988 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "osmo-e1d" Sat May 15 23:16:17 2021 rev:3 rq:893297 version:0.2.1 Changes: -------- --- /work/SRC/openSUSE:Factory/osmo-e1d/osmo-e1d.changes 2021-03-15 10:56:07.437330450 +0100 +++ /work/SRC/openSUSE:Factory/.osmo-e1d.new.2988/osmo-e1d.changes 2021-05-15 23:17:16.936479587 +0200 @@ -1,0 +2,6 @@ +Sat May 15 11:15:27 UTC 2021 - Jan Engelhardt <jeng...@inai.de> + +- Update to release 0.2.1 + * e1d: fix ASSERT during "write terminal" + +------------------------------------------------------------------- Old: ---- 0.2.0.tar.gz New: ---- 0.2.1.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ osmo-e1d.spec ++++++ --- /var/tmp/diff_new_pack.n3EZ2I/_old 2021-05-15 23:17:17.460477541 +0200 +++ /var/tmp/diff_new_pack.n3EZ2I/_new 2021-05-15 23:17:17.460477541 +0200 @@ -18,7 +18,7 @@ Name: osmo-e1d -Version: 0.2.0 +Version: 0.2.1 Release: 0 Summary: Osmocom E1 Daemon License: GPL-2.0-or-later ++++++ 0.2.0.tar.gz -> 0.2.1.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/osmo-e1d-0.2.0/README.md new/osmo-e1d-0.2.1/README.md --- old/osmo-e1d-0.2.0/README.md 1970-01-01 01:00:00.000000000 +0100 +++ new/osmo-e1d-0.2.1/README.md 2021-03-26 09:34:49.000000000 +0100 @@ -0,0 +1,56 @@ +osmo-e1d - Osmocom E1 interface daemon +====================================== + +This repository contains the osmocom E1 interface daemon, +a pure userspace driver for the icE1usb hardware USB E1 adapter. + +It is part of the [Osmocom](https://osmocom.org/) Open Source Mobile +Communications project. + +Homepage +-------- + +The official homepage of the project is +https://osmocom.org/projects/osmo-e1d/wiki + +GIT Repository +-------------- + +You can clone from the official osmo-e1d.git repository using + + git clone git://git.osmocom.org/osmo-e1d.git + git clone https://git.osmocom.org/osmo-e1d.git + +There is a cgit interface at https://git.osmocom.org/osmo-e1d/ + +Related Links +------------- + +* [icE1usb USB E1 adapter](https://osmocom.org/projects/e1-t1-adapter/wiki/IcE1usb) +* [alternative DAHDI driver](https://osmocom.org/issues/4923) + +Mailing List +------------ + +Discussions related to osmo-e1d are happening on the +open...@lists.osmocom.org mailing list, please see +https://lists.osmocom.org/mailman/listinfo/openbsc for subscription +options and the list archive. + +Please observe the [Osmocom Mailing List +Rules](https://osmocom.org/projects/cellular-infrastructure/wiki/Mailing_List_Rules) +when posting. + +Contributing +------------ + +Our coding standards are described at +https://osmocom.org/projects/cellular-infrastructure/wiki/Coding_standards + +We us a gerrit based patch submission/review process for managing +contributions. Please see +https://osmocom.org/projects/cellular-infrastructure/wiki/Gerrit for +more details + +The current patch queue for osmo-e1d can be seen at +https://gerrit.osmocom.org/#/q/project:osmo-e1d+status:open diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/osmo-e1d-0.2.0/debian/changelog new/osmo-e1d-0.2.1/debian/changelog --- old/osmo-e1d-0.2.0/debian/changelog 2021-02-24 14:07:28.000000000 +0100 +++ new/osmo-e1d-0.2.1/debian/changelog 2021-03-26 09:34:49.000000000 +0100 @@ -1,3 +1,10 @@ +osmo-e1d (0.2.1) unstable; urgency=medium + + * add README.md describing what this repository is about + * e1d: fix ASSERT during "write terminal" + + -- Harald Welte <lafo...@osmocom.org> Fri, 26 Mar 2021 09:34:49 +0100 + osmo-e1d (0.2.0) unstable; urgency=medium [ Harald Welte ] diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/osmo-e1d-0.2.0/src/vty.c new/osmo-e1d-0.2.1/src/vty.c --- old/osmo-e1d-0.2.0/src/vty.c 2021-02-24 14:07:28.000000000 +0100 +++ new/osmo-e1d-0.2.1/src/vty.c 2021-03-26 09:34:49.000000000 +0100 @@ -185,12 +185,16 @@ /* find all vpair interfaces */ llist_for_each_entry(intf, &vty_e1d->interfaces, list) { - struct e1_intf *peer = e1d_vpair_intf_peer(intf); + struct e1_intf *peer; unsigned int line_count = 0; struct e1_line *line; if (intf->drv != E1_DRIVER_VPAIR) continue; + + peer = e1d_vpair_intf_peer(intf); + OSMO_ASSERT(peer); + /* skip the 'mirror' interfaces */ if (intf->id > peer->id) continue;