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/.
pespin gerrit-no-reply at lists.osmocom.orgpespin has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmo-bsc/+/25300 )
Change subject: vty: Fix wrongs params passed in vty warning message
......................................................................
vty: Fix wrongs params passed in vty warning message
Change-Id: If1cc4c7fb70bd69cf8d1c0509e6be60ecae33685
---
M src/osmo-bsc/bts_vty.c
1 file changed, 2 insertions(+), 2 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-bsc refs/changes/00/25300/1
diff --git a/src/osmo-bsc/bts_vty.c b/src/osmo-bsc/bts_vty.c
index 2b7b42b..445eea4 100644
--- a/src/osmo-bsc/bts_vty.c
+++ b/src/osmo-bsc/bts_vty.c
@@ -3086,7 +3086,7 @@
if (upper_cmp_p > upper_cmp_n) {
vty_out(vty, "%% Upper RxLev P2 %d must be less than N2 %d%s",
- lower_cmp_p, lower_cmp_n, VTY_NEWLINE);
+ upper_cmp_p, upper_cmp_n, VTY_NEWLINE);
return CMD_WARNING;
}
@@ -3121,7 +3121,7 @@
if (upper_cmp_p > upper_cmp_n) {
vty_out(vty, "%% Upper RxQual P4 %d must be less than N4 %d%s",
- lower_cmp_p, lower_cmp_n, VTY_NEWLINE);
+ upper_cmp_p, upper_cmp_n, VTY_NEWLINE);
return CMD_WARNING;
}
--
To view, visit https://gerrit.osmocom.org/c/osmo-bsc/+/25300
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-bsc
Gerrit-Branch: master
Gerrit-Change-Id: If1cc4c7fb70bd69cf8d1c0509e6be60ecae33685
Gerrit-Change-Number: 25300
Gerrit-PatchSet: 1
Gerrit-Owner: pespin <pespin at sysmocom.de>
Gerrit-MessageType: newchange
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.osmocom.org/pipermail/gerrit-log/attachments/20210901/bcbe0772/attachment.htm>