svn commit: r296473 - head/sys/dev/filemon

Bryan Drewery bdrewery at FreeBSD.org
Mon Mar 7 21:45:26 UTC 2016


Author: bdrewery
Date: Mon Mar  7 21:45:24 2016
New Revision: 296473
URL: https://svnweb.freebsd.org/changeset/base/296473

Log:
  Add missing break for r296472.
  
  This was lost in git rebasing, though it has no functional change.
  
  X-MFC-With:	r296472
  MFC after:	1 week

Modified:
  head/sys/dev/filemon/filemon.c

Modified: head/sys/dev/filemon/filemon.c
==============================================================================
--- head/sys/dev/filemon/filemon.c	Mon Mar  7 21:39:29 2016	(r296472)
+++ head/sys/dev/filemon/filemon.c	Mon Mar  7 21:45:24 2016	(r296473)
@@ -305,6 +305,7 @@ filemon_modevent(module_t mod __unused, 
 		 * Require forcing an unload.
 		 */
 		error = EBUSY;
+		break;
 
 	case MOD_SHUTDOWN:
 		break;


More information about the svn-src-all mailing list