diff options
author | hasso <hasso> | 2004-10-08 06:36:38 +0000 |
---|---|---|
committer | hasso <hasso> | 2004-10-08 06:36:38 +0000 |
commit | 16e73c69de7620933c2ec3114ee4e06e8ff05886 (patch) | |
tree | 84e5991db5e9046849d54e31a3b1b513cc792e34 /ripd/rip_routemap.c | |
parent | a09d4234dd6d137f009b2a8c7c179359426c5940 (diff) | |
download | quagga-16e73c69de7620933c2ec3114ee4e06e8ff05886.tar.bz2 quagga-16e73c69de7620933c2ec3114ee4e06e8ff05886.tar.xz |
There is no warnings here any more.
Diffstat (limited to 'ripd/rip_routemap.c')
-rw-r--r-- | ripd/rip_routemap.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ripd/rip_routemap.c b/ripd/rip_routemap.c index 45a45f4b..ffe13170 100644 --- a/ripd/rip_routemap.c +++ b/ripd/rip_routemap.c @@ -47,7 +47,7 @@ struct rip_metric_modifier /* Add rip route map rule. */ int rip_route_match_add (struct vty *vty, struct route_map_index *index, - char *command, char *arg) + const char *command, char *arg) { int ret; @@ -70,7 +70,7 @@ rip_route_match_add (struct vty *vty, struct route_map_index *index, /* Delete rip route map rule. */ int rip_route_match_delete (struct vty *vty, struct route_map_index *index, - char *command, char *arg) + const char *command, char *arg) { int ret; @@ -93,7 +93,7 @@ rip_route_match_delete (struct vty *vty, struct route_map_index *index, /* Add rip route map rule. */ int rip_route_set_add (struct vty *vty, struct route_map_index *index, - char *command, char *arg) + const char *command, char *arg) { int ret; @@ -116,7 +116,7 @@ rip_route_set_add (struct vty *vty, struct route_map_index *index, /* Delete rip route map rule. */ int rip_route_set_delete (struct vty *vty, struct route_map_index *index, - char *command, char *arg) + const char *command, char *arg) { int ret; |