[warnings] Fix various SOS warnings

2008-08-15 Paul Jakma <paul.jakma@sun.com>

	* */*: Fix various problems flagged by Sun Studio compiler.
	  - '<qualifier> <storage>' obsolescent in declarations
	  - empty statements (';' after ALIAS definitions)
	  - implicit declarations (e.g printstack in lib/log.c)
	  - "\%" in printf string instead of "%%"
	  - loops that return on the first iteration (legitimately, but
 	    compiler can't really know), e.g. bgp_routemap.c
 	  - internal declarations which mask prototypes.
This commit is contained in:
Paul Jakma 2008-08-15 14:05:22 +01:00 committed by Paul Jakma
parent f5612dd382
commit 30a2231a48
12 changed files with 16 additions and 13 deletions

View File

@ -2298,8 +2298,6 @@ bgp_packet_withdraw (struct peer *peer, struct stream *s, struct prefix *p,
void
bgp_attr_init (void)
{
void attrhash_init ();
aspath_init ();
attrhash_init ();
community_init ();

View File

@ -9176,7 +9176,7 @@ bgp_table_stats (struct vty *vty, struct bgp *bgp, afi_t afi, safi_t safi)
vty_out (vty, "%12llu%s", ts.counts[i], VTY_NEWLINE);
if (ts.counts[BGP_STATS_MAXBITLEN] < 9)
break;
vty_out (vty, "%30s: ", "\% announced ");
vty_out (vty, "%30s: ", "%% announced ");
vty_out (vty, "%12.2f%s",
100 * (float)ts.counts[BGP_STATS_SPACE] /
(float)((uint64_t)1UL << ts.counts[BGP_STATS_MAXBITLEN]),

View File

@ -245,9 +245,8 @@ route_match_peer (void *rule, struct prefix *prefix, route_map_object_t type,
{
if (sockunion_same (su, &peer->su))
return RMAP_MATCH;
return RMAP_NOMATCH;
}
return RMAP_NOMATCH;
}
}
return RMAP_NOMATCH;
@ -2574,7 +2573,7 @@ ALIAS (no_match_ip_route_source,
"Match advertising source address of route\n"
"IP access-list number\n"
"IP access-list number (expanded range)\n"
"IP standard access-list name\n");
"IP standard access-list name\n")
DEFUN (match_ip_address_prefix_list,
match_ip_address_prefix_list_cmd,
@ -2685,7 +2684,7 @@ ALIAS (no_match_ip_route_source_prefix_list,
IP_STR
"Match advertising source address of route\n"
"Match entries of prefix-lists\n"
"IP prefix-list name\n");
"IP prefix-list name\n")
DEFUN (match_metric,
match_metric_cmd,

View File

@ -21,6 +21,7 @@
*/
#include <zebra.h>
#include <log.h>
#ifndef HAVE_DAEMON

View File

@ -138,7 +138,7 @@ filter_free (struct filter *filter)
}
/* Return string of filter_type. */
const static char *
static const char *
filter_type_str (struct filter *filter)
{
switch (filter->type)

View File

@ -30,6 +30,10 @@
#ifndef SUNOS_5
#include <sys/un.h>
#endif
/* for printstack on solaris */
#ifdef HAVE_UCONTEXT_H
#include <ucontext.h>
#endif
static int logfile_fd = -1; /* Used in signal handler. */

View File

@ -518,7 +518,7 @@ prefix_list_entry_add (struct prefix_list *plist,
}
/* Return string of prefix_list_type. */
const static char *
static const char *
prefix_list_type_str (struct prefix_list_entry *pentry)
{
switch (pentry->type)

View File

@ -121,7 +121,7 @@ lsa_inject (struct thread *t)
counter++;
return 0;
};
}
/* This thread handles asynchronous messages coming in from the OSPF

View File

@ -520,7 +520,7 @@ struct {
},
};
const static char *ospf_ism_event_str[] =
static const char *ospf_ism_event_str[] =
{
"NoEvent",
"InterfaceUp",

View File

@ -576,7 +576,7 @@ struct {
},
};
const static char *ospf_nsm_event_str[] =
static const char *ospf_nsm_event_str[] =
{
"NoEvent",
"HelloReceived",

View File

@ -50,7 +50,7 @@
#include "ospfd/ospf_dump.h"
const static char *ospf_network_type_str[] =
static const char *ospf_network_type_str[] =
{
"Null",
"POINTOPOINT",

View File

@ -23,6 +23,7 @@
#ifndef _ZEBRA_RTADV_H
#define _ZEBRA_RTADV_H
#include "vty.h"
#include "zebra/interface.h"
/* Router advertisement prefix. */