diff options
| author | ajs <ajs> | 2004-12-22 16:32:16 +0000 | 
|---|---|---|
| committer | ajs <ajs> | 2004-12-22 16:32:16 +0000 | 
| commit | 341a8f1ac9d584ca9dd44bd1b5f90588f475e769 (patch) | |
| tree | 6145d76a12a8232ce349b97447f9676ef8a700bc | |
| parent | afc44c29bc65fa574b9cfc0b2b6b5c499e18a4e5 (diff) | |
2004-12-22 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
	* connected.c: (connected_add_ipv4) Limit warning about /32 addresses
	  with no peer specified to PtP interfaces only.
| -rw-r--r-- | zebra/ChangeLog | 5 | ||||
| -rw-r--r-- | zebra/connected.c | 6 | 
2 files changed, 8 insertions, 3 deletions
| diff --git a/zebra/ChangeLog b/zebra/ChangeLog index 10db2531..3ed8c635 100644 --- a/zebra/ChangeLog +++ b/zebra/ChangeLog @@ -1,3 +1,8 @@ +2004-12-22 Andrew J. Schorr <ajschorr@alumni.princeton.edu> + +	* connected.c: (connected_add_ipv4) Limit warning about /32 addresses +	  with no peer specified to PtP interfaces only. +  2004-12-18 Hasso Tepper <hasso at quagga.net>  	* zebra_vty.c: Fix "show ipv6 route <proto>" command help and make it diff --git a/zebra/connected.c b/zebra/connected.c index 9a6fd669..5f581915 100644 --- a/zebra/connected.c +++ b/zebra/connected.c @@ -156,9 +156,9 @@ connected_add_ipv4 (struct interface *ifp, int flags, struct in_addr *addr,      }    else      /* no broadcast or destination address was supplied */ -    if (prefixlen == IPV4_MAX_PREFIXLEN) -      zlog_warn("warning: interface %s with addr %s/%d needs a peer address", -		ifp->name,inet_ntoa(*addr),prefixlen); +    if ((prefixlen == IPV4_MAX_PREFIXLEN) && if_is_pointopoint(ifp)) +      zlog_warn("warning: PtP interface %s with addr %s/%d needs a " +      		"peer address",ifp->name,inet_ntoa(*addr),prefixlen);    /* Label of this address. */    if (label) | 
