Changeset 5788 in vbox
- Timestamp:
- Nov 19, 2007 10:36:51 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/VBoxManage.cpp
r5771 r5788 6550 6550 } 6551 6551 else 6552 return errorSyntax(USAGE_SETPROPERTY, "Invalid parameter '%s'", Utf8Str(argv[0]).raw());6552 return errorSyntax(USAGE_SETPROPERTY, "Invalid parameter '%s'", argv[0]); 6553 6553 6554 6554 return SUCCEEDED(rc) ? 0 : 1; … … 6575 6575 if (cmd.mAction == USBFilterCmd::Invalid) 6576 6576 { 6577 return errorSyntax(USAGE_USBFILTER, "Invalid parameter '%s'", Utf8Str(argv[0]).raw());6577 return errorSyntax(USAGE_USBFILTER, "Invalid parameter '%s'", argv[0]); 6578 6578 } 6579 6579 … … 6651 6651 else 6652 6652 { 6653 return errorArgument("Invalid -active argument '%s'", Utf8Str(argv[i]).raw());6653 return errorArgument("Invalid -active argument '%s'", argv[i]); 6654 6654 } 6655 6655 } … … 6728 6728 if (RT_FAILURE(rc)) 6729 6729 { 6730 return errorArgument("Failed to convert the -mask interfaces value '%s' to a number, rc=%Rrc", argv[i], rc);6730 return errorArgument("Failed to convert the -maskedinterfaces value '%s' to a number, rc=%Rrc", argv[i], rc); 6731 6731 } 6732 6732 cmd.mFilter.mMaskedInterfaces = u32; … … 6745 6745 else 6746 6746 { 6747 return errorArgument("Invalid USB filter action '%s'", Utf8Str(argv[i]).raw());6747 return errorArgument("Invalid USB filter action '%s'", argv[i]); 6748 6748 } 6749 6749 } 6750 6750 else 6751 { 6752 return errorSyntax(cmd.mAction == USBFilterCmd::Add ? USAGE_USBFILTER_ADD : USAGE_USBFILTER_MODIFY, 6753 "Unknown option '%s'", argv[i]); 6754 } 6751 6755 } 6752 6756
Note:
See TracChangeset
for help on using the changeset viewer.