From bfcb7feefda9e8ba7f58e6551c0af2003572e28b Mon Sep 17 00:00:00 2001 From: christos Date: Tue, 26 Jan 2016 16:01:45 +0000 Subject: [PATCH] PR/50693: David Binderman: Fix constant pasto. --- sys/dev/pci/if_ale.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sys/dev/pci/if_ale.c b/sys/dev/pci/if_ale.c index 43dc6e37c67b..c8bbc36887a0 100644 --- a/sys/dev/pci/if_ale.c +++ b/sys/dev/pci/if_ale.c @@ -1,4 +1,4 @@ -/* $NetBSD: if_ale.c,v 1.18 2015/04/13 16:33:25 riastradh Exp $ */ +/* $NetBSD: if_ale.c,v 1.19 2016/01/26 16:01:45 christos Exp $ */ /*- * Copyright (c) 2008, Pyun YongHyeon @@ -32,7 +32,7 @@ /* Driver for Atheros AR8121/AR8113/AR8114 PCIe Ethernet. */ #include -__KERNEL_RCSID(0, "$NetBSD: if_ale.c,v 1.18 2015/04/13 16:33:25 riastradh Exp $"); +__KERNEL_RCSID(0, "$NetBSD: if_ale.c,v 1.19 2016/01/26 16:01:45 christos Exp $"); #include "vlan.h" @@ -541,7 +541,7 @@ ale_attach(device_t parent, device_t self, void *aux) #ifdef ALE_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