aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVadim Yanitskiy <vyanitskiy@sysmocom.de>2020-11-02 00:45:00 +0700
committerfixeria <vyanitskiy@sysmocom.de>2020-11-02 12:33:42 +0000
commit9076b3947b8f680beb62d9098e99ec51b6f7cb36 (patch)
treef10da3be97ed07d86a494f9cc6da93fa1daeb879
parentfa3e22bc1783df18cb8438deb18100aab80be13b (diff)
vty: fix double '%' in description of some commands
Command description is not a format string => no need to escape. Change-Id: Ib2e339efccec1fc5416ab4b9460a27fa1f8e8044
-rw-r--r--src/common/vty.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/common/vty.c b/src/common/vty.c
index 82fcba2c..6fe1ca74 100644
--- a/src/common/vty.c
+++ b/src/common/vty.c
@@ -588,9 +588,9 @@ DEFUN_ATTR(cfg_bts_agch_queue_mgmt_params,
cfg_bts_agch_queue_mgmt_params_cmd,
"agch-queue-mgmt threshold <0-100> low <0-100> high <0-100000>",
AGCH_QUEUE_STR
- "Threshold to start cleanup\nin %% of the maximum queue length\n"
- "Low water mark for cleanup\nin %% of the maximum queue length\n"
- "High water mark for cleanup\nin %% of the maximum queue length\n",
+ "Threshold to start cleanup\nin % of the maximum queue length\n"
+ "Low water mark for cleanup\nin % of the maximum queue length\n"
+ "High water mark for cleanup\nin % of the maximum queue length\n",
CMD_ATTR_IMMEDIATE)
{
struct gsm_bts *bts = vty->index;
@@ -672,8 +672,8 @@ DEFUN_ATTR(cfg_bts_ul_power_filter_ewma,
"Configure filtering for uplink power control loop\n"
"Select the filtering algorithm\n"
"Exponentially Weighted Moving Average (EWMA)\n"
- "Smoothing factor (in %%): beta = (100 - alpha)\n"
- "1%% - lowest smoothing, 99%% - highest smoothing\n",
+ "Smoothing factor (in %): beta = (100 - alpha)\n"
+ "1% - lowest smoothing, 99% - highest smoothing\n",
CMD_ATTR_IMMEDIATE)
{
struct gsm_bts *bts = vty->index;