aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--openbsc/src/osmo-bsc_nat/bsc_nat_vty.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/openbsc/src/osmo-bsc_nat/bsc_nat_vty.c b/openbsc/src/osmo-bsc_nat/bsc_nat_vty.c
index 55f3dbf4f..3708bc2f1 100644
--- a/openbsc/src/osmo-bsc_nat/bsc_nat_vty.c
+++ b/openbsc/src/osmo-bsc_nat/bsc_nat_vty.c
@@ -881,11 +881,8 @@ DEFUN(cfg_bsc_token, cfg_bsc_token_cmd, "token TOKEN",
{
struct bsc_config *conf = vty->index;
- if (strncmp(conf->token, argv[0], 128) != 0) {
- vty_out(vty, "updated token: %s -> %s%s", conf->token, argv[0],
- VTY_NEWLINE);
+ if (strncmp(conf->token, argv[0], 128) != 0)
conf->token_updated = true;
- }
bsc_replace_string(conf, &conf->token, argv[0]);
return CMD_SUCCESS;