Changeset 38223 in vbox
- Timestamp:
- Jul 28, 2011 2:38:54 PM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 73196
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxService/VBoxService.cpp
r38113 r38223 132 132 RTPrintf("Usage:\n" 133 133 " %-12s [-f|--foreground] [-v|--verbose] [-i|--interval <seconds>]\n" 134 " [--disable-<service>] [--enable-<service>] [-h|-?|--help]\n", g_pszProgName); 134 " [--disable-<service>] [--enable-<service>]\n" 135 " [--only-<service>] [-h|-?|--help]\n", g_pszProgName); 135 136 #ifdef RT_OS_WINDOWS 136 137 RTPrintf(" [-r|--register] [-u|--unregister]\n"); … … 158 159 RTPrintf(" --enable-%-14s Enables the %s service. (default)\n", g_aServices[j].pDesc->pszName, g_aServices[j].pDesc->pszName); 159 160 RTPrintf(" --disable-%-13s Disables the %s service.\n", g_aServices[j].pDesc->pszName, g_aServices[j].pDesc->pszName); 161 RTPrintf(" --only-%-16s Only enables the %s service.\n", g_aServices[j].pDesc->pszName, g_aServices[j].pDesc->pszName); 160 162 if (g_aServices[j].pDesc->pszOptions) 161 163 RTPrintf("%s", g_aServices[j].pDesc->pszOptions); … … 699 701 if ((fFound = !RTStrICmp(psz + sizeof("disable-") - 1, g_aServices[j].pDesc->pszName))) 700 702 g_aServices[j].fEnabled = false; 703 704 if (cch > sizeof("only-") && !memcmp(psz, "only-", sizeof("only-") - 1)) 705 for (unsigned j = 0; j < RT_ELEMENTS(g_aServices); j++) 706 g_aServices[j].fEnabled = !RTStrICmp(psz + sizeof("only-") - 1, g_aServices[j].pDesc->pszName); 701 707 702 708 if (!fFound)
Note:
See TracChangeset
for help on using the changeset viewer.