svn commit: r254311 - stable/8/sys/net

Mark Johnston markj at FreeBSD.org
Wed Aug 14 01:55:45 UTC 2013


Author: markj
Date: Wed Aug 14 01:55:44 2013
New Revision: 254311
URL: http://svnweb.freebsd.org/changeset/base/254311

Log:
  MFC r254020:
  Add a missing module version declaration to if_tun(4).

Modified:
  stable/8/sys/net/if_tun.c
Directory Properties:
  stable/8/sys/   (props changed)
  stable/8/sys/net/   (props changed)

Modified: stable/8/sys/net/if_tun.c
==============================================================================
--- stable/8/sys/net/if_tun.c	Wed Aug 14 01:55:01 2013	(r254310)
+++ stable/8/sys/net/if_tun.c	Wed Aug 14 01:55:44 2013	(r254311)
@@ -322,6 +322,7 @@ static moduledata_t tun_mod = {
 };
 
 DECLARE_MODULE(if_tun, tun_mod, SI_SUB_PSEUDO, SI_ORDER_ANY);
+MODULE_VERSION(if_tun, 1);
 
 static void
 tunstart(struct ifnet *ifp)


More information about the svn-src-stable-8 mailing list