summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMohit Mehta <mohit@vyatta.com>2008-03-11 12:50:45 -0700
committerMohit Mehta <mohit@vyatta.com>2008-03-11 12:50:45 -0700
commit994adaf8099a4a51e0abac94486645142608afa4 (patch)
tree3eb7fd1f6a9e9a04577bc3cdb911c74cd37d67b5
parentac3ffb09b33a9baad977341c452a261e1239e3a4 (diff)
parenteaeeaea08a8c3361d603dce4c74450107a8dfeba (diff)
downloadquagga-994adaf8099a4a51e0abac94486645142608afa4.tar.bz2
quagga-994adaf8099a4a51e0abac94486645142608afa4.tar.xz
Merge branch 'glendale'
-rw-r--r--bgpd/bgp_vty.c28
1 files changed, 14 insertions, 14 deletions
diff --git a/bgpd/bgp_vty.c b/bgpd/bgp_vty.c
index 7268e753..1481c66d 100644
--- a/bgpd/bgp_vty.c
+++ b/bgpd/bgp_vty.c
@@ -331,12 +331,12 @@ DEFUN (router_bgp,
VTY_NEWLINE);
return CMD_WARNING;
case BGP_ERR_AS_MISMATCH:
- vty_out (vty, "BGP is already running; AS is %d%s", as, VTY_NEWLINE);
+ vty_out (vty, "BGP is already running; AS is %u%s", (unsigned)as, VTY_NEWLINE);
return CMD_WARNING;
case BGP_ERR_INSTANCE_MISMATCH:
vty_out (vty, "BGP view name and AS number mismatch%s", VTY_NEWLINE);
- vty_out (vty, "BGP instance is already running; AS is %d%s",
- as, VTY_NEWLINE);
+ vty_out (vty, "BGP instance is already running; AS is %u%s",
+ (unsigned)as, VTY_NEWLINE);
return CMD_WARNING;
}
@@ -1277,10 +1277,10 @@ peer_remote_as_vty (struct vty *vty, const char *peer_str,
switch (ret)
{
case BGP_ERR_PEER_GROUP_MEMBER:
- vty_out (vty, "%% Peer-group AS %d. Cannot configure remote-as for member%s", as, VTY_NEWLINE);
+ vty_out (vty, "%% Peer-group AS %u. Cannot configure remote-as for member%s", (unsigned)as, VTY_NEWLINE);
return CMD_WARNING;
case BGP_ERR_PEER_GROUP_PEER_TYPE_DIFFERENT:
- vty_out (vty, "%% The AS# can not be changed from %d to %s, peer-group members must be all internal or all external%s", as, as_str, VTY_NEWLINE);
+ vty_out (vty, "%% The AS# can not be changed from %u to %s, peer-group members must be all internal or all external%s", (unsigned)as, as_str, VTY_NEWLINE);
return CMD_WARNING;
}
return bgp_vty_return (vty, ret);
@@ -1560,7 +1560,7 @@ DEFUN (neighbor_set_peer_group,
if (ret == BGP_ERR_PEER_GROUP_PEER_TYPE_DIFFERENT)
{
- vty_out (vty, "%% Peer with AS %d cannot be in this peer-group, members must be all internal or all external%s", as, VTY_NEWLINE);
+ vty_out (vty, "%% Peer with AS %u cannot be in this peer-group, members must be all internal or all external%s", (unsigned)as, VTY_NEWLINE);
return CMD_WARNING;
}
@@ -6628,8 +6628,8 @@ bgp_show_summary (struct vty *vty, struct bgp *bgp, int afi, int safi)
/* Usage summary and header */
vty_out (vty,
- "BGP router identifier %s, local AS number %lu%s",
- inet_ntoa (bgp->router_id), (long unsigned)bgp->as, VTY_NEWLINE);
+ "BGP router identifier %s, local AS number %u%s",
+ inet_ntoa (bgp->router_id), (unsigned)bgp->as, VTY_NEWLINE);
ents = bgp_table_count (bgp->rib[afi][safi]);
vty_out (vty, "RIB entries %ld, using %s of memory%s", ents,
@@ -6675,8 +6675,8 @@ bgp_show_summary (struct vty *vty, struct bgp *bgp, int afi, int safi)
vty_out (vty, "4 ");
- vty_out (vty, "%5d %7d %7d %8d %4d %4lu ",
- peer->as,
+ vty_out (vty, "%5u %7d %7d %8d %4d %4lu ",
+ (unsigned)peer->as,
peer->open_in + peer->update_in + peer->keepalive_in
+ peer->notify_in + peer->refresh_in + peer->dynamic_cap_in,
peer->open_out + peer->update_out + peer->keepalive_out
@@ -7185,9 +7185,9 @@ bgp_show_peer (struct vty *vty, struct peer *p)
/* Configured IP address. */
vty_out (vty, "BGP neighbor is %s, ", p->host);
- vty_out (vty, "remote AS %lu, ", (long unsigned)p->as);
- vty_out (vty, "local AS %d%s, ",
- p->change_local_as ? p->change_local_as : p->local_as,
+ vty_out (vty, "remote AS %u, ", (unsigned)p->as);
+ vty_out (vty, "local AS %u%s, ",
+ p->change_local_as ? (unsigned)p->change_local_as : (unsigned)p->local_as,
CHECK_FLAG (p->flags, PEER_FLAG_LOCAL_AS_NO_PREPEND) ?
" no-prepend" : "");
vty_out (vty, "%s link%s",
@@ -7968,7 +7968,7 @@ bgp_show_rsclient_summary (struct vty *vty, struct bgp *bgp,
"Route Server's BGP router identifier %s%s",
inet_ntoa (bgp->router_id), VTY_NEWLINE);
vty_out (vty,
- "Route Server's local AS number %lu%s", (long unsigned)bgp->as,
+ "Route Server's local AS number %u%s", (unsigned)bgp->as,
VTY_NEWLINE);
vty_out (vty, "%s", VTY_NEWLINE);