diff options
author | paul <paul> | 2004-10-10 11:56:56 +0000 |
---|---|---|
committer | paul <paul> | 2004-10-10 11:56:56 +0000 |
commit | c1e8ebd6035534ada903319afe425d629bf010b3 (patch) | |
tree | 29de45e5fd9e0bd496dee66a167879d351a0e01a /lib/if_rmap.h | |
parent | 3cdb5550f39573b24e9df90c200ccc99837296e7 (diff) | |
download | quagga-c1e8ebd6035534ada903319afe425d629bf010b3.tar.bz2 quagga-c1e8ebd6035534ada903319afe425d629bf010b3.tar.xz |
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/if_rmap.h')
-rw-r--r-- | lib/if_rmap.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/if_rmap.h b/lib/if_rmap.h index a9355ab9..540d68fc 100644 --- a/lib/if_rmap.h +++ b/lib/if_rmap.h @@ -41,7 +41,7 @@ void if_rmap_init (int); void if_rmap_reset (void); void if_rmap_hook_add (void (*) (struct if_rmap *)); void if_rmap_hook_delete (void (*) (struct if_rmap *)); -struct if_rmap *if_rmap_lookup (char *); +struct if_rmap *if_rmap_lookup (const char *); int config_write_if_rmap (struct vty *); #endif /* _ZEBRA_IF_RMAP_H */ |