mirror of
https://gitlab.labs.nic.cz/labs/bird.git
synced 2024-05-11 16:54:54 +00:00
Configuration strings are constant.
This is merely a const propagation. There was no problem in there.
This commit is contained in:
committed by
Maria Matejka
parent
a109056145
commit
fd9f0c0640
@@ -791,7 +791,7 @@ ospf_reconfigure(struct proto *P, struct proto_config *CF)
|
||||
|
||||
|
||||
void
|
||||
ospf_sh_neigh(struct proto *P, char *iff)
|
||||
ospf_sh_neigh(struct proto *P, const char *iff)
|
||||
{
|
||||
struct ospf_proto *p = (struct ospf_proto *) P;
|
||||
struct ospf_iface *ifa = NULL;
|
||||
@@ -900,7 +900,7 @@ ospf_sh(struct proto *P)
|
||||
}
|
||||
|
||||
void
|
||||
ospf_sh_iface(struct proto *P, char *iff)
|
||||
ospf_sh_iface(struct proto *P, const char *iff)
|
||||
{
|
||||
struct ospf_proto *p = (struct ospf_proto *) P;
|
||||
struct ospf_iface *ifa = NULL;
|
||||
|
@@ -990,9 +990,9 @@ static inline int oa_is_nssa(struct ospf_area *oa)
|
||||
|
||||
void ospf_stop_gr_recovery(struct ospf_proto *p);
|
||||
|
||||
void ospf_sh_neigh(struct proto *P, char *iff);
|
||||
void ospf_sh_neigh(struct proto *P, const char *iff);
|
||||
void ospf_sh(struct proto *P);
|
||||
void ospf_sh_iface(struct proto *P, char *iff);
|
||||
void ospf_sh_iface(struct proto *P, const char *iff);
|
||||
void ospf_sh_state(struct proto *P, int verbose, int reachable);
|
||||
|
||||
void ospf_sh_lsadb(struct lsadb_show_data *ld);
|
||||
|
Reference in New Issue
Block a user