From 9035efaa924c69f4f4fcb1049c7dc4f43b9da980 Mon Sep 17 00:00:00 2001 From: paul Date: Sun, 10 Oct 2004 11:56:56 +0000 Subject: 2004-10-10 Paul Jakma * 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. --- lib/ChangeLog | 32 ++++++++++++++++++++++++++++++-- 1 file changed, 30 insertions(+), 2 deletions(-) (limited to 'lib/ChangeLog') diff --git a/lib/ChangeLog b/lib/ChangeLog index 05317db5..dc8fae8a 100644 --- a/lib/ChangeLog +++ b/lib/ChangeLog @@ -1,7 +1,35 @@ -2004-10-05 Paul Jakma +2004-10-10 Paul Jakma * 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. + 2004-10-08 Hasso Tepper * routemap.c, routemap.h: Make some string arguments const. -- cgit v1.2.1