svn commit: r191580 - head/sys/dev/e1000

Jack F Vogel jfv at FreeBSD.org
Mon Apr 27 18:35:07 UTC 2009


Author: jfv
Date: Mon Apr 27 18:35:06 2009
New Revision: 191580
URL: http://svn.freebsd.org/changeset/base/191580

Log:
  Correct fat finger mistake

Modified:
  head/sys/dev/e1000/if_em.c

Modified: head/sys/dev/e1000/if_em.c
==============================================================================
--- head/sys/dev/e1000/if_em.c	Mon Apr 27 18:35:03 2009	(r191579)
+++ head/sys/dev/e1000/if_em.c	Mon Apr 27 18:35:06 2009	(r191580)
@@ -1021,7 +1021,7 @@ em_transmit_locked(struct ifnet *ifp, st
 			** listener and set the watchdog on.
 			*/
 			ETHER_BPF_MTAP(ifp, m);
-			addapter->watchdog_timer = EM_TX_TIMEOUT;
+			adapter->watchdog_timer = EM_TX_TIMEOUT;
 		}
 	} else if ((error = drbr_enqueue(ifp, adapter->br, m)) != 0)
 		return (error);


More information about the svn-src-all mailing list