diff options
author | hasso <hasso> | 2004-10-11 12:57:57 +0000 |
---|---|---|
committer | hasso <hasso> | 2004-10-11 12:57:57 +0000 |
commit | 1711cf69edcde5dfeaf833bea0594fe2ffbd9a0f (patch) | |
tree | dae18a3f3a5d3c078ddca771e771f707d4a6c1de /ripd/rip_interface.c | |
parent | 993ae793113345587d2ced43b9f775b2bfef9ecf (diff) | |
download | quagga-1711cf69edcde5dfeaf833bea0594fe2ffbd9a0f.tar.bz2 quagga-1711cf69edcde5dfeaf833bea0594fe2ffbd9a0f.tar.xz |
Sync with changes in lib. Make more strings const.
Diffstat (limited to 'ripd/rip_interface.c')
-rw-r--r-- | ripd/rip_interface.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/ripd/rip_interface.c b/ripd/rip_interface.c index cbb4d3e2..509d5ed5 100644 --- a/ripd/rip_interface.c +++ b/ripd/rip_interface.c @@ -44,7 +44,7 @@ void rip_enable_apply (struct interface *); void rip_passive_interface_apply (struct interface *); int rip_if_down(struct interface *ifp); -int rip_enable_if_lookup (char *ifname); +int rip_enable_if_lookup (const char *ifname); int rip_enable_network_lookup2 (struct connected *connected); void rip_enable_apply_all (); @@ -986,7 +986,7 @@ rip_enable_network_delete (struct prefix *p) /* Check interface is enabled by ifname statement. */ int -rip_enable_if_lookup (char *ifname) +rip_enable_if_lookup (const char *ifname) { unsigned int i; char *str; @@ -1000,7 +1000,7 @@ rip_enable_if_lookup (char *ifname) /* Add interface to rip_enable_if. */ int -rip_enable_if_add (char *ifname) +rip_enable_if_add (const char *ifname) { int ret; @@ -1017,7 +1017,7 @@ rip_enable_if_add (char *ifname) /* Delete interface from rip_enable_if. */ int -rip_enable_if_delete (char *ifname) +rip_enable_if_delete (const char *ifname) { int index; char *str; @@ -1268,7 +1268,7 @@ rip_clean_network () /* Utility function for looking up passive interface settings. */ int -rip_passive_nondefault_lookup (char *ifname) +rip_passive_nondefault_lookup (const char *ifname) { unsigned int i; char *str; @@ -1309,7 +1309,7 @@ rip_passive_interface_apply_all () /* Passive interface. */ int -rip_passive_nondefault_set (struct vty *vty, char *ifname) +rip_passive_nondefault_set (struct vty *vty, const char *ifname) { if (rip_passive_nondefault_lookup (ifname) >= 0) return CMD_WARNING; @@ -1322,7 +1322,7 @@ rip_passive_nondefault_set (struct vty *vty, char *ifname) } int -rip_passive_nondefault_unset (struct vty *vty, char *ifname) +rip_passive_nondefault_unset (struct vty *vty, const char *ifname) { int i; char *str; @@ -1984,7 +1984,7 @@ DEFUN (rip_passive_interface, "Interface name\n" "default for all interfaces\n") { - char *ifname = argv[0]; + const char *ifname = argv[0]; if (!strcmp(ifname,"default")) { passive_default = 1; @@ -2005,7 +2005,7 @@ DEFUN (no_rip_passive_interface, "Interface name\n" "default for all interfaces\n") { - char *ifname = argv[0]; + const char *ifname = argv[0]; if (!strcmp(ifname,"default")) { passive_default = 0; |