mark two functions as static, fix typo in vty message

This commit is contained in:
Harald Welte 2009-05-23 16:59:33 +00:00
parent 78f2f508e6
commit be4b730196
1 changed files with 3 additions and 3 deletions

View File

@ -518,13 +518,13 @@ DEFUN(show_e1ts,
return CMD_SUCCESS; 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); vty_out(vty, "Paging on BTS %u%s", pag->bts->nr, VTY_NEWLINE);
subscr_dump_vty(vty, pag->subscr); 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; struct gsm_paging_request *pag;
@ -535,7 +535,7 @@ void bts_paging_dump_vty(struct vty *vty, struct gsm_bts *bts)
DEFUN(show_paging, DEFUN(show_paging,
show_paging_cmd, show_paging_cmd,
"show paging [bts_nr]", "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_network *net = gsmnet;
struct gsm_bts *bts; struct gsm_bts *bts;