summaryrefslogtreecommitdiff
path: root/bgpd
diff options
context:
space:
mode:
Diffstat (limited to 'bgpd')
-rw-r--r--bgpd/bgp_attr.c1
-rw-r--r--bgpd/bgpd.c1
2 files changed, 2 insertions, 0 deletions
diff --git a/bgpd/bgp_attr.c b/bgpd/bgp_attr.c
index 44c85850..8ffcfdd0 100644
--- a/bgpd/bgp_attr.c
+++ b/bgpd/bgp_attr.c
@@ -1166,6 +1166,7 @@ bgp_attr_parse (struct peer *peer, struct attr *attr, bgp_size_t size,
/* Check remaining length check.*/
if (endp - BGP_INPUT_PNT (peer) < BGP_ATTR_MIN_LEN)
{
+ /* XXX warning: long int format, int arg (arg 5) */
zlog (peer->log, LOG_WARNING,
"%s error BGP attribute length %ld is smaller than min len",
peer->host, endp - STREAM_PNT (BGP_INPUT (peer)));
diff --git a/bgpd/bgpd.c b/bgpd/bgpd.c
index 26c44553..bd2f998f 100644
--- a/bgpd/bgpd.c
+++ b/bgpd/bgpd.c
@@ -4122,6 +4122,7 @@ peer_uptime (time_t uptime2, char *buf, size_t len)
/* Check buffer length. */
if (len < BGP_UPTIME_LEN)
{
+ /* XXX: warning: long int format, size_t arg (arg 2) */
zlog_warn ("peer_uptime (): buffer shortage %ld", len);
/* XXX: should return status instead of buf... */
snprintf (buf, len, "<error> ");