Changeset 13282 in vbox for trunk/src/VBox/Additions/common/VBoxControl
- Timestamp:
- Oct 15, 2008 12:42:08 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 37941
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxControl/VBoxControl.cpp
r12812 r13282 986 986 else if (3 == argc) 987 987 { 988 if (strcmp(argv[1], "-flags") != 0) 989 usageOK = false; 990 else 988 if (strcmp(argv[2], "-flags") == 0) 991 989 { 992 990 VBoxControlError("You may not specify flags without a value"); 993 991 return 1; 994 992 } 993 else 994 usageOK = false; 995 995 } 996 996 else if (4 == argc) … … 1077 1077 if (RT_SUCCESS(rc)) 1078 1078 { 1079 while (RT_SUCCESS(rc) && !pszName)1079 while (RT_SUCCESS(rc) && pszName) 1080 1080 { 1081 1081 RTPrintf("Name: %s, value: %s, timestamp: %lld, flags: %s\n",
Note:
See TracChangeset
for help on using the changeset viewer.