Changeset 56723 in vbox for trunk/src/VBox/HostDrivers
- Timestamp:
- Jul 1, 2015 7:49:13 AM (10 years ago)
- Location:
- trunk/src/VBox/HostDrivers/VBoxNetFlt
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/VBoxNetFlt/darwin/VBoxNetFlt-darwin.cpp
r56315 r56723 1104 1104 int rc = RTErrConvertFromErrno(err); 1105 1105 if (RT_SUCCESS(rc)) 1106 LogRel(("VBoxFltDrv: attached to '%s' / % .*Rhxs\n", pThis->szName, sizeof(pThis->u.s.MacAddr), &pThis->u.s.MacAddr));1106 LogRel(("VBoxFltDrv: attached to '%s' / %RTmac\n", pThis->szName, &pThis->u.s.MacAddr)); 1107 1107 else 1108 1108 LogRel(("VBoxFltDrv: failed to attach to ifnet '%s' (err=%d)\n", pThis->szName, err)); -
trunk/src/VBox/HostDrivers/VBoxNetFlt/linux/VBoxNetFlt-linux.c
r56315 r56723 1702 1702 } 1703 1703 1704 LogRel(("VBoxNetFlt: attached to '%s' / % .*Rhxs\n", pThis->szName, sizeof(pThis->u.s.MacAddr), &pThis->u.s.MacAddr));1704 LogRel(("VBoxNetFlt: attached to '%s' / %RTmac\n", pThis->szName, &pThis->u.s.MacAddr)); 1705 1705 return VINF_SUCCESS; 1706 1706 }
Note:
See TracChangeset
for help on using the changeset viewer.