diff options
author | paul <paul> | 2004-10-10 11:56:56 +0000 |
---|---|---|
committer | paul <paul> | 2004-10-10 11:56:56 +0000 |
commit | 9035efaa924c69f4f4fcb1049c7dc4f43b9da980 (patch) | |
tree | f81d25b0e069ad8fb5f2843172a4e60fa0d6cbdf /lib/routemap.h | |
parent | ddd119fd3d94e95dd44aa9fb3bc3fca4f26078a0 (diff) |
2004-10-10 Paul Jakma <paul@dishone.st>
* version.h.in: (pid_output*) add const qualifier.
* command.h: Change DEFUN func to take const char *[] rather
than char **, to begin process of fixing compile warnings in lib/.
Nearly all other changes in this commit follow from this change.
* buffer.{c,h}: (buffer_write) pointer-arithmetic is gccism, take
const void * and cast an automatic const char *p to it.
(buffer_putstr) add const
* command.c: (zencrypt) const qualifier
(cmd_execute_command_real) ditto
(cmd_execute_command_strict) ditto
(config_log_file) ditto.
Fix leak of getcwd() returned string.
* memory.{c,h}: Add MTYPE_DISTRIBUTE_IFNAME for struct dist ifname.
* distribute.{c,h}: Update with const qualifier.
(distribute_free) use MTYPE_DISTRIBUTE_IFNAME
(distribute_lookup) Cast to char *, note that it's ok.
(distribute_hash_alloc) use MTYPE_DISTRIBUTE_IFNAME.
(distribute_get) Cast to char *, note that it's ok.
* filter.c: Update with const qualifier.
* if.{c,h}: ditto.
* if_rmap.{c,h}: ditto.
(if_rmap_lookup) Cast to char *, note that it's ok.
(if_rmap_get) ditto.
* log.{c,h}: Update with const qualifier.
* plist.{c,h}: ditto.
* routemap.{c,h}: ditto.
* smux.{c,h}: ditto. Fix some signed/unsigned comparisons.
* sockopt.c: (getsockopt_cmsg_data) add return for error case.
* vty.c: Update with const qualifier.
Diffstat (limited to 'lib/routemap.h')
-rw-r--r-- | lib/routemap.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/routemap.h b/lib/routemap.h index a6f3c5db..73874d6b 100644 --- a/lib/routemap.h +++ b/lib/routemap.h @@ -185,16 +185,16 @@ route_map_install_set (struct route_map_rule_cmd *cmd); /* Lookup route map by name. */ struct route_map * -route_map_lookup_by_name (char *name); +route_map_lookup_by_name (const char *name); /* Apply route map to the object. */ route_map_result_t route_map_apply (struct route_map *map, struct prefix *, route_map_object_t object_type, void *object); -void route_map_add_hook (void (*func) (char *)); -void route_map_delete_hook (void (*func) (char *)); -void route_map_event_hook (void (*func) (route_map_event_t, char *)); +void route_map_add_hook (void (*func) (const char *)); +void route_map_delete_hook (void (*func) (const char *)); +void route_map_event_hook (void (*func) (route_map_event_t, const char *)); #endif /* _ZEBRA_ROUTEMAP_H */ |