From be4b730196f4fa01b223e3ab6a69fd233facf0dc Mon Sep 17 00:00:00 2001 From: Harald Welte Date: Sat, 23 May 2009 16:59:33 +0000 Subject: [PATCH] mark two functions as static, fix typo in vty message --- src/vty_interface.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/vty_interface.c b/src/vty_interface.c index b63c77474..a6bfdf23a 100644 --- a/src/vty_interface.c +++ b/src/vty_interface.c @@ -518,13 +518,13 @@ DEFUN(show_e1ts, return CMD_SUCCESS; } -void paging_dump_vty(struct vty *vty, struct gsm_paging_request *pag) +static void paging_dump_vty(struct vty *vty, struct gsm_paging_request *pag) { vty_out(vty, "Paging on BTS %u%s", pag->bts->nr, VTY_NEWLINE); subscr_dump_vty(vty, pag->subscr); } -void bts_paging_dump_vty(struct vty *vty, struct gsm_bts *bts) +static void bts_paging_dump_vty(struct vty *vty, struct gsm_bts *bts) { struct gsm_paging_request *pag; @@ -535,7 +535,7 @@ void bts_paging_dump_vty(struct vty *vty, struct gsm_bts *bts) DEFUN(show_paging, show_paging_cmd, "show paging [bts_nr]", - SHOW_STR "Display information about pating reuqests of a BTS\n") + SHOW_STR "Display information about paging reuqests of a BTS\n") { struct gsm_network *net = gsmnet; struct gsm_bts *bts;