svn commit: r201995 - head/sys/net

Bjoern A. Zeeb bz at FreeBSD.org
Sun Jan 10 12:03:53 UTC 2010


Author: bz
Date: Sun Jan 10 12:03:53 2010
New Revision: 201995
URL: http://svn.freebsd.org/changeset/base/201995

Log:
  Correct a typo.
  
  MFC after:	5 days

Modified:
  head/sys/net/if_epair.c

Modified: head/sys/net/if_epair.c
==============================================================================
--- head/sys/net/if_epair.c	Sun Jan 10 11:25:34 2010	(r201994)
+++ head/sys/net/if_epair.c	Sun Jan 10 12:03:53 2010	(r201995)
@@ -323,7 +323,7 @@ epair_add_ifp_for_draining(struct ifnet 
 	STAILQ_FOREACH(elm, &epair_dpcpu->epair_ifp_drain_list, ifp_next)
 		if (elm->ifp == ifp)
 			break;
-	/* If the ipf is there already, return success. */
+	/* If the ifp is there already, return success. */
 	if (elm != NULL)
 		return (0);
 


More information about the svn-src-head mailing list