Changeset 37556 in vbox for trunk/src/VBox/HostDrivers/Support
- Timestamp:
- Jun 20, 2011 1:41:23 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/linux/SUPLib-linux.cpp
r28800 r37556 267 267 rc = RTStrToUInt32Ex(szBuf, &pszNext, 10, &uA); 268 268 if ( RT_SUCCESS(rc) 269 269 && *pszNext == '.') 270 270 { 271 /* 272 * new version number scheme starting with Linux 3.0 273 */ 274 if (uA >= 3) 275 return VINF_SUCCESS; 271 276 rc = RTStrToUInt32Ex(pszNext+1, &pszNext, 10, &uB); 272 277 if ( RT_SUCCESS(rc) 273 278 && *pszNext == '.') 274 279 { 275 280 rc = RTStrToUInt32Ex(pszNext+1, &pszNext, 10, &uC);
Note:
See TracChangeset
for help on using the changeset viewer.