From c47d5c0d776f24bc0f1481d9387042c9fba1db07 Mon Sep 17 00:00:00 2001 From: Vadim Yanitskiy Date: Thu, 29 Oct 2020 18:05:22 +0700 Subject: [PATCH] cosmetic: fix spelling in logging message: existAnt -> existEnt Change-Id: Id803d0c71f3762b8353289853918ea78859780b4 --- src/hlr_vty.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hlr_vty.c b/src/hlr_vty.c index e959be89..a054cbe1 100644 --- a/src/hlr_vty.c +++ b/src/hlr_vty.c @@ -305,7 +305,7 @@ DEFUN(cfg_no_euse, cfg_no_euse_cmd, { struct hlr_euse *euse = euse_find(g_hlr, argv[0]); if (!euse) { - vty_out(vty, "%% Cannot remove non-existant EUSE %s%s", argv[0], VTY_NEWLINE); + vty_out(vty, "%% Cannot remove non-existent EUSE %s%s", argv[0], VTY_NEWLINE); return CMD_WARNING; } if (g_hlr->euse_default == euse) {