Changeset 46326 in vbox for trunk/src/VBox/Additions/common/VBoxService
- Timestamp:
- May 30, 2013 12:16:53 PM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 86097
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxService/VBoxService.cpp
r44872 r46326 861 861 bool fFound = false; 862 862 863 if (cch > sizeof("enable-") && !memcmp(psz, "enable-", sizeof("enable-") - 1))863 if (cch > sizeof("enable-") && !memcmp(psz, RT_STR_TUPLE("enable-"))) 864 864 for (unsigned j = 0; !fFound && j < RT_ELEMENTS(g_aServices); j++) 865 865 if ((fFound = !RTStrICmp(psz + sizeof("enable-") - 1, g_aServices[j].pDesc->pszName))) 866 866 g_aServices[j].fEnabled = true; 867 867 868 if (cch > sizeof("disable-") && !memcmp(psz, "disable-", sizeof("disable-") - 1))868 if (cch > sizeof("disable-") && !memcmp(psz, RT_STR_TUPLE("disable-"))) 869 869 for (unsigned j = 0; !fFound && j < RT_ELEMENTS(g_aServices); j++) 870 870 if ((fFound = !RTStrICmp(psz + sizeof("disable-") - 1, g_aServices[j].pDesc->pszName))) 871 871 g_aServices[j].fEnabled = false; 872 872 873 if (cch > sizeof("only-") && !memcmp(psz, "only-", sizeof("only-") - 1))873 if (cch > sizeof("only-") && !memcmp(psz, RT_STR_TUPLE("only-"))) 874 874 for (unsigned j = 0; j < RT_ELEMENTS(g_aServices); j++) 875 875 {
Note:
See TracChangeset
for help on using the changeset viewer.