svn commit: r254310 - stable/9/sys/net
Mark Johnston
markj at FreeBSD.org
Wed Aug 14 01:55:01 UTC 2013
Author: markj
Date: Wed Aug 14 01:55:01 2013
New Revision: 254310
URL: http://svnweb.freebsd.org/changeset/base/254310
Log:
MFC r254020:
Add a missing module version declaration to if_tun(4).
Modified:
stable/9/sys/net/if_tun.c
Directory Properties:
stable/9/sys/ (props changed)
stable/9/sys/net/ (props changed)
Modified: stable/9/sys/net/if_tun.c
==============================================================================
--- stable/9/sys/net/if_tun.c Wed Aug 14 00:42:21 2013 (r254309)
+++ stable/9/sys/net/if_tun.c Wed Aug 14 01:55:01 2013 (r254310)
@@ -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-9
mailing list