Cosmetic: msc_vty: remove redundant "0 =", "1 ="

Remove "0 =", "1 =" in-front of the boolean descriptions of
auth-tuple-reuse-on-error. The online VTY doc and the pdf manual
prepend the value automatically.

Change-Id: Ifd14c2fb3f58701eaf66570d729a660233fb83ed
This commit is contained in:
Oliver Smith 2019-01-09 10:46:43 +01:00 committed by osmith
parent 2c268697e9
commit d6e24fd155
1 changed files with 2 additions and 2 deletions

View File

@ -425,8 +425,8 @@ DEFUN(cfg_msc_auth_tuple_max_reuse_count, cfg_msc_auth_tuple_max_reuse_count_cmd
DEFUN(cfg_msc_auth_tuple_reuse_on_error, cfg_msc_auth_tuple_reuse_on_error_cmd,
"auth-tuple-reuse-on-error (0|1)",
"Configure authentication tuple re-use when HLR is not responsive\n"
"0 = never re-use auth tuples beyond auth-tuple-max-reuse-count (default)\n"
"1 = if the HLR does not deliver new tuples, do re-use already available old ones.\n")
"Never re-use auth tuples beyond auth-tuple-max-reuse-count (default)\n"
"If the HLR does not deliver new tuples, do re-use already available old ones.\n")
{
gsmnet->vlr->cfg.auth_reuse_old_sets_on_error = atoi(argv[0]) ? true : false;
return CMD_SUCCESS;