aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVadim Yanitskiy <vyanitskiy@sysmocom.de>2020-10-29 18:05:22 +0700
committerVadim Yanitskiy <vyanitskiy@sysmocom.de>2020-10-29 18:05:22 +0700
commitc47d5c0d776f24bc0f1481d9387042c9fba1db07 (patch)
treeceed3c01b23f88d0597226e71c614cc89ed08669
parentdfbc2cbbc206d2e5e9896d54c2cf9303a8663029 (diff)
cosmetic: fix spelling in logging message: existAnt -> existEnt
-rw-r--r--src/hlr_vty.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/hlr_vty.c b/src/hlr_vty.c
index e959be8..a054cbe 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) {