Date: Sun, 26 May 1996 13:14:58 -0700 (PDT) From: Jeffrey Hsu <hsu> To: cvs-all, CVS-committers, cvs-sys, phk Subject: Re: cvs commit: src/sys/net if_tun.c Message-ID: <199605262014.NAA13156@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
There's a missing semicolon after the EBUSY:
diff -c -r1.24 if_tun.c
*** if_tun.c 1996/05/26 17:04:48 1.24
--- if_tun.c 1996/05/26 20:08:05
***************
*** 158,164 ****
return (ENXIO);
tp = &tunctl[unit];
if (tp->tun_flags & TUN_OPEN)
! return EBUSY
ifp = &tp->tun_if;
tp->tun_flags |= TUN_OPEN;
TUNDEBUG("%s%d: open\n", ifp->if_name, ifp->if_unit);
--- 158,164 ----
return (ENXIO);
tp = &tunctl[unit];
if (tp->tun_flags & TUN_OPEN)
! return EBUSY;
ifp = &tp->tun_if;
tp->tun_flags |= TUN_OPEN;
TUNDEBUG("%s%d: open\n", ifp->if_name, ifp->if_unit);
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199605262014.NAA13156>
