pespin has submitted this change. (
https://gerrit.osmocom.org/c/osmo-ggsn/+/31002 )
Change subject: Fix typos in comments and VTY descriptions
......................................................................
Fix typos in comments and VTY descriptions
Change-Id: I359425152dc18d29c57047f1b10942480b7a61e5
---
M ggsn/ggsn.h
M ggsn/ggsn_vty.c
2 files changed, 8 insertions(+), 8 deletions(-)
Approvals:
Jenkins Builder: Verified
dexter: Looks good to me, approved
diff --git a/ggsn/ggsn.h b/ggsn/ggsn.h
index 46f8778..1abbc9a 100644
--- a/ggsn/ggsn.h
+++ b/ggsn/ggsn.h
@@ -66,9 +66,9 @@
uint32_t apn_type_mask;
/* GTP-U via TUN device or in Linux kernel */
enum apn_gtpu_mode gtpu_mode;
- /* administratively shut-down (true) or not (false) */
+ /* administratively shut down (true) or not (false) */
bool shutdown;
- /* transmit G-PDU sequeence numbers (true) or not (false) */
+ /* transmit G-PDU sequence numbers (true) or not (false) */
bool tx_gpdu_seq;
} cfg;
@@ -128,7 +128,7 @@
char *state_dir;
/* Time between Echo requests on each SGSN */
unsigned int echo_interval;
- /* administratively shut-down (true) or not (false) */
+ /* administratively shut down (true) or not (false) */
bool shutdown;
} cfg;
diff --git a/ggsn/ggsn_vty.c b/ggsn/ggsn_vty.c
index fb0caa2..2d49a94 100644
--- a/ggsn/ggsn_vty.c
+++ b/ggsn/ggsn_vty.c
@@ -299,7 +299,7 @@
DEFUN(cfg_ggsn_shutdown, cfg_ggsn_shutdown_cmd,
"shutdown ggsn",
- "Put the GGSN in administrative shut-down\n" GGSN_STR)
+ "Put the GGSN in administrative shutdown\n" GGSN_STR)
{
struct ggsn_ctx *ggsn = (struct ggsn_ctx *) vty->index;
@@ -316,7 +316,7 @@
DEFUN(cfg_ggsn_no_shutdown, cfg_ggsn_no_shutdown_cmd,
"no shutdown ggsn",
- NO_STR GGSN_STR "Remove the GGSN from administrative shut-down\n")
+ NO_STR GGSN_STR "Remove the GGSN from administrative shutdown\n")
{
struct ggsn_ctx *ggsn = (struct ggsn_ctx *) vty->index;
@@ -344,7 +344,7 @@
DEFUN(cfg_ggsn_show_sgsn, cfg_ggsn_show_sgsn_cmd,
"show sgsn",
- NO_STR GGSN_STR "Remove the GGSN from administrative shut-down\n")
+ NO_STR GGSN_STR "Remove the GGSN from administrative shutdown\n")
{
struct ggsn_ctx *ggsn = (struct ggsn_ctx *) vty->index;
struct sgsn_peer *sgsn;
@@ -681,7 +681,7 @@
DEFUN(cfg_apn_shutdown, cfg_apn_shutdown_cmd,
"shutdown",
- "Put the APN in administrative shut-down\n")
+ "Put the APN in administrative shutdown\n")
{
struct apn_ctx *apn = (struct apn_ctx *) vty->index;
@@ -698,7 +698,7 @@
DEFUN(cfg_apn_no_shutdown, cfg_apn_no_shutdown_cmd,
"no shutdown",
- NO_STR "Remove the APN from administrative shut-down\n")
+ NO_STR "Remove the APN from administrative shutdown\n")
{
struct apn_ctx *apn = (struct apn_ctx *) vty->index;
--
To view, visit
https://gerrit.osmocom.org/c/osmo-ggsn/+/31002
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-ggsn
Gerrit-Branch: master
Gerrit-Change-Id: I359425152dc18d29c57047f1b10942480b7a61e5
Gerrit-Change-Number: 31002
Gerrit-PatchSet: 1
Gerrit-Owner: pespin <pespin(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: dexter <pmaier(a)sysmocom.de>
Gerrit-Reviewer: pespin <pespin(a)sysmocom.de>
Gerrit-MessageType: merged