blob: 670495c87b8c11e102a93674ca5ae5e3cb44ebfe (
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
@@ -162,7 +162,11 @@
if (rc)
{
*ppDev = make_dev(&g_VBoxGuestFreeBSDChrDevSW,
+#if __FreeBSD_version < 800062
unit2minor(iUnit),
+#else
+ iUnit,
+#endif
UID_ROOT,
GID_WHEEL,
0644,
|