- Timestamp:
- Jul 22, 2013 7:24:08 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/VBoxManageGuestCtrl.cpp
r47311 r47325 2793 2793 RTEXITCODE rcExit = RTEXITCODE_SUCCESS; 2794 2794 2795 /** Use RTGetOpt here when handling command line args gets more complex. */ 2796 2795 2797 bool fListAll = false; 2796 2798 bool fListSessions = false; 2797 2799 bool fListProcesses = false; 2798 if (!RTStrICmp(pArg->argv[0], "sessions")) 2800 if ( !RTStrICmp(pArg->argv[0], "sessions") 2801 || !RTStrICmp(pArg->argv[0], "sess")) 2799 2802 fListSessions = true; 2800 else if (!RTStrICmp(pArg->argv[0], "processes")) 2803 else if ( !RTStrICmp(pArg->argv[0], "processes") 2804 || !RTStrICmp(pArg->argv[0], "procs")) 2801 2805 fListSessions = fListProcesses = true; /* Showing processes implies showing sessions. */ 2802 2806 else if (!RTStrICmp(pArg->argv[0], "all"))
Note:
See TracChangeset
for help on using the changeset viewer.