Add missing splx(s) in IP_MULTICAST_IF

Submitted by:	Jim Binkley <jrb@cs.pdx.edu>
This commit is contained in:
Bill Fenner 1996-03-26 18:56:51 +00:00
parent 7b36c4a152
commit fbc6ab006d
1 changed files with 2 additions and 1 deletions

View File

@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* @(#)ip_output.c 8.3 (Berkeley) 1/21/94
* $Id: ip_output.c,v 1.31 1996/03/11 15:13:21 davidg Exp $
* $Id: ip_output.c,v 1.32 1996/03/13 08:02:43 pst Exp $
*/
#include <sys/param.h>
@ -942,6 +942,7 @@ ip_setmoptions(optname, imop, m)
s = splimp();
INADDR_TO_IFP(addr, ifp);
if (ifp == NULL || (ifp->if_flags & IFF_MULTICAST) == 0) {
splx(s);
error = EADDRNOTAVAIL;
break;
}