Module Name: src
Committed By: christos
Date: Tue Jan 26 16:02:50 UTC 2016
Modified Files:
src/sys/dev/pci: if_alc.c
Log Message:
PR/50694: David Binderman: Fix wrong pasto constant.
To generate a diff of this commit:
cvs rdiff -u -r1.17 -r1.18 src/sys/dev/pci/if_alc.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/dev/pci/if_alc.c
diff -u src/sys/dev/pci/if_alc.c:1.17 src/sys/dev/pci/if_alc.c:1.18
--- src/sys/dev/pci/if_alc.c:1.17 Tue Nov 24 18:30:04 2015
+++ src/sys/dev/pci/if_alc.c Tue Jan 26 11:02:50 2016
@@ -1,4 +1,4 @@
-/* $NetBSD: if_alc.c,v 1.17 2015/11/24 23:30:04 leot Exp $ */
+/* $NetBSD: if_alc.c,v 1.18 2016/01/26 16:02:50 christos Exp $ */
/* $OpenBSD: if_alc.c,v 1.1 2009/08/08 09:31:13 kevlo Exp $ */
/*-
* Copyright (c) 2009, Pyun YongHyeon <[email protected]>
@@ -1418,7 +1418,7 @@ alc_attach(device_t parent, device_t sel
#ifdef ALC_CHECKSUM
ifp->if_capabilities |= IFCAP_CSUM_IPv4_Tx | IFCAP_CSUM_IPv4_Rx |
IFCAP_CSUM_TCPv4_Tx | IFCAP_CSUM_TCPv4_Rx |
- IFCAP_CSUM_UDPv4_Tx | IFCAP_CSUM_TCPv4_Rx;
+ IFCAP_CSUM_UDPv4_Tx | IFCAP_CSUM_UDPv4_Rx;
#endif
#if NVLAN > 0