From 8dfc24cb470f4637e2fb20260e8a6e57553de6d9 Mon Sep 17 00:00:00 2001 From: Alexander Couzens Date: Mon, 25 Jan 2021 16:09:23 +0100 Subject: gprs_ns2: drop prefix of all internal exposed function All functions which are exposed by gprs_ns2_internal.h should not contain the public prefix gprs_. Internal function should only contain ns2_ prefix. Change-Id: Icecc5a918902cd10efac72bbac20780d39aab272 --- src/gb/gprs_ns2_vty.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/gb/gprs_ns2_vty.c') diff --git a/src/gb/gprs_ns2_vty.c b/src/gb/gprs_ns2_vty.c index 36a7f78f..d6674ff8 100644 --- a/src/gb/gprs_ns2_vty.c +++ b/src/gb/gprs_ns2_vty.c @@ -298,7 +298,7 @@ static void dump_nse(struct vty *vty, const struct gprs_ns2_nse *nse, bool stats vty_out(vty, "NSEI %05u: %s, %s%s", nse->nsei, gprs_ns2_lltype_str(nse->ll), nse->alive ? "ALIVE" : "DEAD", VTY_NEWLINE); - gprs_ns2_sns_dump_vty(vty, " ", nse, stats); + ns2_sns_dump_vty(vty, " ", nse, stats); llist_for_each_entry(nsvc, &nse->nsvc, list) { if (persistent_only) { if (nsvc->persistent) @@ -418,7 +418,7 @@ DEFUN(show_nse, show_nse_cmd, "show ns (nsei|nsvc) <0-65535> [stats]", static int nsvc_force_unconf_cb(struct gprs_ns2_vc *nsvc, void *ctx) { - gprs_ns2_vc_force_unconfigured(nsvc); + ns2_vc_force_unconfigured(nsvc); return 0; } -- cgit v1.2.3