summaryrefslogtreecommitdiff
path: root/sys/dev/pci
diff options
context:
space:
mode:
authorAngelos D. Keromytis <angelos@cvs.openbsd.org>2001-05-29 01:01:52 +0000
committerAngelos D. Keromytis <angelos@cvs.openbsd.org>2001-05-29 01:01:52 +0000
commitc48b5769e25ba769c434ebaa0c05fa73afd6d474 (patch)
tree85a1462407ac14dab4d751d4e0a4d126910ca7ec /sys/dev/pci
parentee19c0fdc5150a2ab3782d13a6759c1210ca4456 (diff)
Set, don't OR the capabilities.
Diffstat (limited to 'sys/dev/pci')
-rw-r--r--sys/dev/pci/if_txp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pci/if_txp.c b/sys/dev/pci/if_txp.c
index e67509e7617..949e08ecad8 100644
--- a/sys/dev/pci/if_txp.c
+++ b/sys/dev/pci/if_txp.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_txp.c,v 1.34 2001/05/28 10:32:23 angelos Exp $ */
+/* $OpenBSD: if_txp.c,v 1.35 2001/05/29 01:01:51 angelos Exp $ */
/*
* Copyright (c) 2001
@@ -276,7 +276,7 @@ txp_attach(parent, self, aux)
ifp->if_watchdog = txp_watchdog;
ifp->if_baudrate = 10000000;
ifp->if_snd.ifq_maxlen = TX_ENTRIES;
- ifp->if_capabilities |= IFCAP_IPSEC;
+ ifp->if_capabilities = IFCAP_IPSEC;
bcopy(sc->sc_dev.dv_xname, ifp->if_xname, IFNAMSIZ);
timeout_set(&sc->sc_tick, txp_tick, sc);