mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
added missing semicolon
Submitted by: Jeffrey Hsu <hsu@freefall.freebsd.org>
This commit is contained in:
parent
cfbaf65d93
commit
51d976f16a
1 changed files with 1 additions and 1 deletions
|
|
@ -158,7 +158,7 @@ tunopen(dev, flag, mode, p)
|
|||
return (ENXIO);
|
||||
tp = &tunctl[unit];
|
||||
if (tp->tun_flags & TUN_OPEN)
|
||||
return EBUSY
|
||||
return EBUSY;
|
||||
ifp = &tp->tun_if;
|
||||
tp->tun_flags |= TUN_OPEN;
|
||||
TUNDEBUG("%s%d: open\n", ifp->if_name, ifp->if_unit);
|
||||
|
|
|
|||
Loading…
Reference in a new issue