Module Name: src
Committed By: cegger
Date: Wed Aug 5 14:41:12 UTC 2009
Modified Files:
src/sys/dev/pci: if_age.c
Log Message:
fix typo
To generate a diff of this commit:
cvs rdiff -u -r1.30 -r1.31 src/sys/dev/pci/if_age.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_age.c
diff -u src/sys/dev/pci/if_age.c:1.30 src/sys/dev/pci/if_age.c:1.31
--- src/sys/dev/pci/if_age.c:1.30 Wed Aug 5 12:07:16 2009
+++ src/sys/dev/pci/if_age.c Wed Aug 5 14:41:12 2009
@@ -1,4 +1,4 @@
-/* $NetBSD: if_age.c,v 1.30 2009/08/05 12:07:16 cegger Exp $ */
+/* $NetBSD: if_age.c,v 1.31 2009/08/05 14:41:12 cegger Exp $ */
/* $OpenBSD: if_age.c,v 1.1 2009/01/16 05:00:34 kevlo Exp $ */
/*-
@@ -31,7 +31,7 @@
/* Driver for Attansic Technology Corp. L1 Gigabit Ethernet. */
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: if_age.c,v 1.30 2009/08/05 12:07:16 cegger Exp $");
+__KERNEL_RCSID(0, "$NetBSD: if_age.c,v 1.31 2009/08/05 14:41:12 cegger Exp $");
#include "bpfilter.h"
#include "vlan.h"
@@ -257,7 +257,7 @@
#ifdef AGE_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_UCPv4_Rx;
#endif
#if NVLAN > 0