Change in osmo-bsc[master]: fix handling of invalid pchan names in vty

This is merely a historical archive of years 2008-2021, before the migration to mailman3.

A maintained and still updated list archive can be found at https://lists.osmocom.org/hyperkitty/list/gerrit-log@lists.osmocom.org/.

Stefan Sperling gerrit-no-reply at lists.osmocom.org
Tue Jul 17 14:08:44 UTC 2018


Stefan Sperling has uploaded this change for review. ( https://gerrit.osmocom.org/10026


Change subject: fix handling of invalid pchan names in vty
......................................................................

fix handling of invalid pchan names in vty

If an invalid phys_chan_config is specified in osmo-bsc.cfg, raise
a parsing error at program startup.

If an invalid phys_chan_config is specified in in the VTY while
the program is running, show a warning to inform the user that
the configuration change was not applied.

Change-Id: I97baa359464a0e94de2497bc9214b99ed2a24041
Related: OS#1876
---
M src/osmo-bsc/bsc_vty.c
1 file changed, 5 insertions(+), 1 deletion(-)



  git pull ssh://gerrit.osmocom.org:29418/osmo-bsc refs/changes/26/10026/1

diff --git a/src/osmo-bsc/bsc_vty.c b/src/osmo-bsc/bsc_vty.c
index 57c5363..dd4396d 100644
--- a/src/osmo-bsc/bsc_vty.c
+++ b/src/osmo-bsc/bsc_vty.c
@@ -4032,8 +4032,12 @@
 	int pchanc;
 
 	pchanc = gsm_pchan_parse(argv[0]);
-	if (pchanc < 0)
+	if (pchanc < 0) {
+		vty_out(vty, "Unknown physical channel name '%s'%s", argv[0], VTY_NEWLINE);
+		if (vty->type == VTY_FILE)
+			return CMD_ERR_NO_MATCH;
 		return CMD_WARNING;
+	}
 
 	ts->pchan = pchanc;
 

-- 
To view, visit https://gerrit.osmocom.org/10026
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings

Gerrit-Project: osmo-bsc
Gerrit-Branch: master
Gerrit-MessageType: newchange
Gerrit-Change-Id: I97baa359464a0e94de2497bc9214b99ed2a24041
Gerrit-Change-Number: 10026
Gerrit-PatchSet: 1
Gerrit-Owner: Stefan Sperling <ssperling at sysmocom.de>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.osmocom.org/pipermail/gerrit-log/attachments/20180717/ac7a5630/attachment.htm>


More information about the gerrit-log mailing list