aboutsummaryrefslogtreecommitdiffstats
path: root/src/mgcp_ss7.c
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2010-12-17 17:15:44 +0100
committerHolger Hans Peter Freyther <zecke@selfish.org>2010-12-20 17:21:26 +0100
commit882082c1f67523613b6a83a887e4863df5e44ed4 (patch)
tree0dc29e4cfabadedd86439b1a6bad4362d29ef0b9 /src/mgcp_ss7.c
parent2c472a3f7be82ac28de1fcaa7f2c73d6ca22fce0 (diff)
mgcp: Fix the adaptation name for the config options
Diffstat (limited to 'src/mgcp_ss7.c')
-rw-r--r--src/mgcp_ss7.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mgcp_ss7.c b/src/mgcp_ss7.c
index dc058b6..0eb027c 100644
--- a/src/mgcp_ss7.c
+++ b/src/mgcp_ss7.c
@@ -909,7 +909,7 @@ DEFUN(cfg_mgcp_upstr_agc, cfg_mgcp_upstr_agc_cmd,
}
DEFUN(cfg_mgc_upstr_adp, cfg_mgcp_upstr_adp_cmd,
- "upstream-adaption-rate <1-128>",
+ "upstream-adaptiton-rate <1-128>",
"Set the adaption rate in (dB/sec) * 10\n"
"Range\n")
{
@@ -945,7 +945,7 @@ DEFUN(cfg_mgcp_dwnstr_agc, cfg_mgcp_dwnstr_agc_cmd,
}
DEFUN(cfg_mgc_dwnstr_adp, cfg_mgcp_dwnstr_adp_cmd,
- "downstream-adaption-rate <1-128>",
+ "downstream-adaptation-rate <1-128>",
"Set the adaption rate in (dB/sec) * 10\n"
"Range\n")
{
@@ -978,11 +978,11 @@ void mgcp_write_extra(struct vty *vty)
vty_out(vty, " input-digital-gain %d%s", s_digital_inp_gain, VTY_NEWLINE);
vty_out(vty, " output-digital-gain %d%s", s_digital_out_gain, VTY_NEWLINE);
vty_out(vty, " upstream-automatic-gain %d%s", s_upstr_agc_enbl, VTY_NEWLINE);
- vty_out(vty, " upstream-adaption-rate %d%s", s_upstr_adp_rate, VTY_NEWLINE);
+ vty_out(vty, " upstream-adaptation-rate %d%s", s_upstr_adp_rate, VTY_NEWLINE);
vty_out(vty, " upstream-max-applied-gain %d%s", s_upstr_max_gain, VTY_NEWLINE);
vty_out(vty, " upstream-target-level %d%s", s_upstr_target_lvl, VTY_NEWLINE);
vty_out(vty, " downstream-automatic-gain %d%s", s_dwnstr_agc_enbl, VTY_NEWLINE);
- vty_out(vty, " downstream-adaption-rate %d%s", s_dwnstr_adp_rate, VTY_NEWLINE);
+ vty_out(vty, " downstream-adaptation-rate %d%s", s_dwnstr_adp_rate, VTY_NEWLINE);
vty_out(vty, " downstream-max-applied-gain %d%s", s_dwnstr_max_gain, VTY_NEWLINE);
vty_out(vty, " downstream-target-level %d%s", s_dwnstr_target_lvl, VTY_NEWLINE);
}