From cbf5cdfe7eb10e6efee16cbd6b5e7b910f8c47a7 Mon Sep 17 00:00:00 2001 From: Max Date: Tue, 24 Oct 2017 18:18:55 +0200 Subject: GPRS: constify NS printing routine parameters Change-Id: I549ab7c26ac1489e01f281594bafe44b0681dc83 --- src/gb/gprs_ns.c | 2 +- src/gb/gprs_ns_vty.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'src/gb') diff --git a/src/gb/gprs_ns.c b/src/gb/gprs_ns.c index 679b59da..a00c8e52 100644 --- a/src/gb/gprs_ns.c +++ b/src/gb/gprs_ns.c @@ -1170,7 +1170,7 @@ int gprs_ns_rcvmsg(struct gprs_ns_inst *nsi, struct msgb *msg, return rc; } -const char *gprs_ns_ll_str(struct gprs_nsvc *nsvc) +const char *gprs_ns_ll_str(const struct gprs_nsvc *nsvc) { static char buf[80]; diff --git a/src/gb/gprs_ns_vty.c b/src/gb/gprs_ns_vty.c index a3f7b2b5..e8ef2a21 100644 --- a/src/gb/gprs_ns_vty.c +++ b/src/gb/gprs_ns_vty.c @@ -156,7 +156,7 @@ DEFUN(cfg_ns, cfg_ns_cmd, return CMD_SUCCESS; } -static void dump_nse(struct vty *vty, struct gprs_nsvc *nsvc, bool stats, bool persistent_only) +static void dump_nse(struct vty *vty, const struct gprs_nsvc *nsvc, bool stats, bool persistent_only) { if (persistent_only) if (!nsvc->persistent) @@ -186,7 +186,7 @@ static void dump_nse(struct vty *vty, struct gprs_nsvc *nsvc, bool stats, bool p } } -static void dump_ns(struct vty *vty, struct gprs_ns_inst *nsi, bool stats, bool persistent_only) +static void dump_ns(struct vty *vty, const struct gprs_ns_inst *nsi, bool stats, bool persistent_only) { struct gprs_nsvc *nsvc; struct in_addr ia; -- cgit v1.2.3