From owner-cvs-sys Sun May 26 13:15:24 1996 Return-Path: owner-cvs-sys Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id NAA13238 for cvs-sys-outgoing; Sun, 26 May 1996 13:15:24 -0700 (PDT) Received: (from hsu@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id NAA13156; Sun, 26 May 1996 13:14:58 -0700 (PDT) Date: Sun, 26 May 1996 13:14:58 -0700 (PDT) From: Jeffrey Hsu Message-Id: <199605262014.NAA13156@freefall.freebsd.org> To: cvs-all, CVS-committers, cvs-sys, phk Subject: Re: cvs commit: src/sys/net if_tun.c Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk 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);