VirtualBox

Ignore:
Timestamp:
May 30, 2013 12:16:53 PM (12 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
86097
Message:

RT_STR_TUPLE

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Additions/common/VBoxService/VBoxService.cpp

    r44872 r46326  
    861861                bool fFound = false;
    862862
    863                 if (cch > sizeof("enable-") && !memcmp(psz, "enable-", sizeof("enable-") - 1))
     863                if (cch > sizeof("enable-") && !memcmp(psz, RT_STR_TUPLE("enable-")))
    864864                    for (unsigned j = 0; !fFound && j < RT_ELEMENTS(g_aServices); j++)
    865865                        if ((fFound = !RTStrICmp(psz + sizeof("enable-") - 1, g_aServices[j].pDesc->pszName)))
    866866                            g_aServices[j].fEnabled = true;
    867867
    868                 if (cch > sizeof("disable-") && !memcmp(psz, "disable-", sizeof("disable-") - 1))
     868                if (cch > sizeof("disable-") && !memcmp(psz, RT_STR_TUPLE("disable-")))
    869869                    for (unsigned j = 0; !fFound && j < RT_ELEMENTS(g_aServices); j++)
    870870                        if ((fFound = !RTStrICmp(psz + sizeof("disable-") - 1, g_aServices[j].pDesc->pszName)))
    871871                            g_aServices[j].fEnabled = false;
    872872
    873                 if (cch > sizeof("only-") && !memcmp(psz, "only-", sizeof("only-") - 1))
     873                if (cch > sizeof("only-") && !memcmp(psz, RT_STR_TUPLE("only-")))
    874874                    for (unsigned j = 0; j < RT_ELEMENTS(g_aServices); j++)
    875875                    {
Note: See TracChangeset for help on using the changeset viewer.

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