blob: 64ed1b6899f805af281e33f2ef1afe42ae502ec1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
--- src/VBox/Additions/common/VBoxGuest/VBoxGuest-freebsd.c.old 2009-05-04 20:29:23.000000000 +0200
+++ src/VBox/Additions/common/VBoxGuest/VBoxGuest-freebsd.c 2009-05-04 20:30:28.000000000 +0200
@@ -228,7 +228,11 @@
if (rc)
{
*ppDev = make_dev(&g_VBoxGuestFreeBSDChrDevSW,
+#if __FreeBSD_version < 800062
unit2minor(iUnit),
+#else
+ iUnit,
+#endif
UID_ROOT,
GID_WHEEL,
0644,
|