svn commit: r361338 - head/sys/sys

Mark Johnston markj at FreeBSD.org
Thu May 21 18:38:42 UTC 2020


Author: markj
Date: Thu May 21 18:38:41 2020
New Revision: 361338
URL: https://svnweb.freebsd.org/changeset/base/361338

Log:
  Fix ACCEPT_FILTER_DEFINE to pass the version to MODULE_VERSION.
  
  MFC with:	r361263

Modified:
  head/sys/sys/socketvar.h

Modified: head/sys/sys/socketvar.h
==============================================================================
--- head/sys/sys/socketvar.h	Thu May 21 17:34:31 2020	(r361337)
+++ head/sys/sys/socketvar.h	Thu May 21 18:38:41 2020	(r361338)
@@ -349,7 +349,7 @@ struct accept_filter {
 	};								\
 	DECLARE_MODULE(modname, modname##_mod, SI_SUB_DRIVERS,		\
 	    SI_ORDER_MIDDLE);						\
-	MODULE_VERSION(modname, 1)
+	MODULE_VERSION(modname, ver)
 
 #ifdef MALLOC_DECLARE
 MALLOC_DECLARE(M_ACCF);


More information about the svn-src-head mailing list