diff options
author | 2016-03-04 00:04:48 +0000 | |
---|---|---|
committer | 2016-03-04 00:04:48 +0000 | |
commit | 8860bd060236ae9646ff84eade313b2a0c3d0dd3 (patch) | |
tree | 12019ab792f0668557c9f4193dd699ac9b580c0c | |
parent | Correct OpenBSD::Pledge in set list to allow vax release to build (diff) | |
download | wireguard-openbsd-8860bd060236ae9646ff84eade313b2a0c3d0dd3.tar.xz wireguard-openbsd-8860bd060236ae9646ff84eade313b2a0c3d0dd3.zip |
extra ) not needed, spotted by tiago silva
-rw-r--r-- | sys/dev/pci/if_oce.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pci/if_oce.c b/sys/dev/pci/if_oce.c index 68e3198964b..f457510fcde 100644 --- a/sys/dev/pci/if_oce.c +++ b/sys/dev/pci/if_oce.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_oce.c,v 1.92 2016/01/06 06:41:57 mikeb Exp $ */ +/* $OpenBSD: if_oce.c,v 1.93 2016/03/04 00:04:48 deraadt Exp $ */ /* * Copyright (c) 2012 Mike Belopuhov @@ -3071,7 +3071,7 @@ oce_config_rss(struct oce_softc *sc, int enable) if (enable) cmd.params.req.enable_rss = RSS_ENABLE_IPV4 | RSS_ENABLE_IPV6 | - RSS_ENABLE_TCP_IPV4 | RSS_ENABLE_TCP_IPV6); + RSS_ENABLE_TCP_IPV4 | RSS_ENABLE_TCP_IPV6; cmd.params.req.flush = OCE_FLUSH; cmd.params.req.if_id = htole32(sc->sc_if_id); |