From 30811f865c62ffa899579e4b6c8640235800af09 Mon Sep 17 00:00:00 2001 From: Harald Welte Date: Sat, 25 Sep 2021 18:42:23 +0200 Subject: [PATCH] smpp: Fix help string in vty for "alert-notifications" Without the 'no' prefix, this command is about enabling, not disabling Change-Id: I3019a0d9271e73030b9d7cd555761e17358ec812 --- src/libmsc/smpp_vty.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libmsc/smpp_vty.c b/src/libmsc/smpp_vty.c index 9026f6cf5..31e209085 100644 --- a/src/libmsc/smpp_vty.c +++ b/src/libmsc/smpp_vty.c @@ -501,7 +501,7 @@ DEFUN(cfg_esme_no_dcs_transp, cfg_esme_no_dcs_transp_cmd, DEFUN(cfg_esme_alert_notif, cfg_esme_alert_notif_cmd, "alert-notifications", - "Disable sending of SMPP Alert Notifications for this ESME") + "Enable sending of SMPP Alert Notifications for this ESME") { struct osmo_smpp_acl *acl = vty->index;