# HG changeset patch # User jlarmour # Date 1044577628 0 # Node ID e2b797ca39b40978389cb6b74e53e8b790222fdf # Parent d13814ac7bd27f22007ca6dbe317fccd73d75887 * src/net/eth_drv.c: If driver can't set multi-cast, indicate it's only a warning. diff --git a/packages/io/eth/current/ChangeLog b/packages/io/eth/current/ChangeLog --- a/packages/io/eth/current/ChangeLog +++ b/packages/io/eth/current/ChangeLog @@ -1,3 +1,8 @@ +2003-02-07 Jonathan Larmour + + * src/net/eth_drv.c: If driver can't set multi-cast, indicate it's + only a warning. + 2002-08-14 Gary Thomas * cdl/eth_drivers.cdl: CYGNUM_IO_ETH_DRIVERS_SG_LIST_SIZE diff --git a/packages/io/eth/current/src/net/eth_drv.c b/packages/io/eth/current/src/net/eth_drv.c --- a/packages/io/eth/current/src/net/eth_drv.c +++ b/packages/io/eth/current/src/net/eth_drv.c @@ -574,7 +574,8 @@ eth_drv_ioctl(struct ifnet *ifp, u_long // Note: drivers may behave like IFF_ALLMULTI if the list is // more than their hardware can handle, e.g. some can only handle 1. if ((sc->funs->control)(sc, mode, &mc_list, sizeof(mc_list))) { - diag_printf("Driver can't set multi-cast mode\n"); + diag_printf( "[%s] Warning: Driver can't set multi-cast mode\n", + __FUNCTION__ ); error = EINVAL; } break;