VirtualBox

Ignore:
Timestamp:
Jun 20, 2011 1:41:23 PM (13 years ago)
Author:
vboxsync
Message:

SUPLib-linux: new version number scheme starting with Linux 3.0

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/HostDrivers/Support/linux/SUPLib-linux.cpp

    r28800 r37556  
    267267        rc = RTStrToUInt32Ex(szBuf, &pszNext, 10, &uA);
    268268        if (   RT_SUCCESS(rc)
    269                 && *pszNext == '.')
     269            && *pszNext == '.')
    270270        {
     271            /*
     272             * new version number scheme starting with Linux 3.0
     273             */
     274            if (uA >= 3)
     275                return VINF_SUCCESS;
    271276            rc = RTStrToUInt32Ex(pszNext+1, &pszNext, 10, &uB);
    272277            if (   RT_SUCCESS(rc)
    273                     && *pszNext == '.')
     278                && *pszNext == '.')
    274279            {
    275280                rc = RTStrToUInt32Ex(pszNext+1, &pszNext, 10, &uC);
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette