From 03d52f8d6ccb4bcb17ab8d098468a8e112c910a4 Mon Sep 17 00:00:00 2001 From: hasso Date: Wed, 29 Sep 2004 00:26:19 +0000 Subject: Merge svn revision 1048 from Zebra cvs. Also add missing sokopt.h include to ospf6_network.h. --- ospf6d/ChangeLog | 5 +++++ ospf6d/ospf6_asbr.c | 4 ++-- ospf6d/ospf6_lsa.c | 10 +++++----- ospf6d/ospf6_network.c | 1 + ospf6d/ospf6_proto.c | 2 +- ospf6d/ospf6_proto.h | 2 +- 6 files changed, 15 insertions(+), 9 deletions(-) (limited to 'ospf6d') diff --git a/ospf6d/ChangeLog b/ospf6d/ChangeLog index e7ef97ec..a37c4ac1 100644 --- a/ospf6d/ChangeLog +++ b/ospf6d/ChangeLog @@ -1,3 +1,8 @@ +2004-09-25 Hasso Tepper + + * ospf6_asbr.c, ospf6_lsa.c, ospf6_proto.c, ospf6_proto.h: Fix + compiler warnings. + 2004-09-23 Hasso Tepper * *.[c|h]: list -> struct list *, listnode -> struct listnode *. diff --git a/ospf6d/ospf6_asbr.c b/ospf6d/ospf6_asbr.c index a3728f4e..31050816 100644 --- a/ospf6d/ospf6_asbr.c +++ b/ospf6d/ospf6_asbr.c @@ -383,7 +383,7 @@ ospf6_asbr_routemap_unset (int type) } void -ospf6_asbr_routemap_update () +ospf6_asbr_routemap_update (char *mapname) { int type; @@ -460,7 +460,7 @@ ospf6_asbr_redistribute_add (int type, int ifindex, struct prefix *prefix, if (ospf6->rmap[type].name) { if (ospf6->rmap[type].map == NULL) - ospf6_asbr_routemap_update (); + ospf6_asbr_routemap_update (NULL); if (ospf6->rmap[type].map == NULL) { zlog_warn ("route-map \"%s\" not found, suppress redistributing", diff --git a/ospf6d/ospf6_lsa.c b/ospf6d/ospf6_lsa.c index 6cc6f4de..da732798 100644 --- a/ospf6d/ospf6_lsa.c +++ b/ospf6d/ospf6_lsa.c @@ -51,8 +51,8 @@ ospf6_unknown_lsa_show (struct vty *vty, struct ospf6_lsa *lsa) u_char *start, *end, *current; char byte[4]; - start = (char *) lsa->header + sizeof (struct ospf6_lsa_header); - end = (char *) lsa->header + ntohs (lsa->header->length); + start = (u_char *) lsa->header + sizeof (struct ospf6_lsa_header); + end = (u_char *) lsa->header + ntohs (lsa->header->length); vty_out (vty, " Unknown contents:%s", VNL); for (current = start; current < end; current ++) @@ -366,8 +366,8 @@ ospf6_lsa_show_dump (struct vty *vty, struct ospf6_lsa *lsa) u_char *start, *end, *current; char byte[4]; - start = (char *) lsa->header; - end = (char *) lsa->header + ntohs (lsa->header->length); + start = (u_char *) lsa->header; + end = (u_char *) lsa->header + ntohs (lsa->header->length); vty_out (vty, "%s", VNL); vty_out (vty, "%s:%s", lsa->name, VNL); @@ -670,7 +670,7 @@ ospf6_lsa_checksum (struct ospf6_lsa_header *lsa_header) lsa_header->checksum = 0; length = ntohs (lsa_header->length) - 2; - sp = (char *) &lsa_header->type; + sp = (u_char *) &lsa_header->type; for (ep = sp + length; sp < ep; sp = q) { diff --git a/ospf6d/ospf6_network.c b/ospf6d/ospf6_network.c index d5bfdd50..de0c3f38 100644 --- a/ospf6d/ospf6_network.c +++ b/ospf6d/ospf6_network.c @@ -24,6 +24,7 @@ #include "log.h" #include "memory.h" #include "sockunion.h" +#include "sockopt.h" #include "privs.h" #include "ospf6_proto.h" diff --git a/ospf6d/ospf6_proto.c b/ospf6d/ospf6_proto.c index 5b47cf80..584382ae 100644 --- a/ospf6d/ospf6_proto.c +++ b/ospf6d/ospf6_proto.c @@ -70,7 +70,7 @@ ospf6_capability_printbuf (char capability, char *buf, int size) } void -ospf6_options_printbuf (char *options, char *buf, int size) +ospf6_options_printbuf (u_char *options, char *buf, int size) { char *dc, *r, *n, *mc, *e, *v6; dc = (OSPF6_OPT_ISSET (options, OSPF6_OPT_DC) ? "DC" : "--"); diff --git a/ospf6d/ospf6_proto.h b/ospf6d/ospf6_proto.h index 2b6ae54d..9fe821df 100644 --- a/ospf6d/ospf6_proto.h +++ b/ospf6d/ospf6_proto.h @@ -116,7 +116,7 @@ void ospf6_prefix_apply_mask (struct ospf6_prefix *op); void ospf6_prefix_options_printbuf (u_int8_t prefix_options, char *buf, int size); void ospf6_capability_printbuf (char capability, char *buf, int size); -void ospf6_options_printbuf (char *options, char *buf, int size); +void ospf6_options_printbuf (u_char *options, char *buf, int size); #endif /* OSPF6_PROTO_H */ -- cgit v1.2.1