summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sys/pci/if_pn.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/sys/pci/if_pn.c b/sys/pci/if_pn.c
index f62f99d..ee81b37 100644
--- a/sys/pci/if_pn.c
+++ b/sys/pci/if_pn.c
@@ -29,7 +29,7 @@
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
* THE POSSIBILITY OF SUCH DAMAGE.
*
- * $Id: if_pn.c,v 1.41 1999/03/27 20:32:32 wpaul Exp $
+ * $Id: if_pn.c,v 1.42 1999/03/30 19:29:25 wpaul Exp $
*/
/*
@@ -97,7 +97,7 @@
#ifndef lint
static const char rcsid[] =
- "$Id: if_pn.c,v 1.41 1999/03/27 20:32:32 wpaul Exp $";
+ "$Id: if_pn.c,v 1.42 1999/03/30 19:29:25 wpaul Exp $";
#endif
/*
@@ -1344,7 +1344,8 @@ static void pn_rxeof(sc)
m0->m_data += 2;
if (total_len <= (MHLEN - 2)) {
- bcopy(mtod(m, caddr_t), mtod(m0, caddr_t), total_len); m_freem(m);
+ bcopy(mtod(m, caddr_t), mtod(m0, caddr_t), total_len);
+ m_freem(m);
m = m0;
m->m_pkthdr.len = m->m_len = total_len;
} else {
OpenPOWER on IntegriCloud