VirtualBox

Changeset 5788 in vbox


Ignore:
Timestamp:
Nov 19, 2007 10:36:51 AM (17 years ago)
Author:
vboxsync
Message:

Don't ignore unknown arguments.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Frontends/VBoxManage/VBoxManage.cpp

    r5771 r5788  
    65506550    }
    65516551    else
    6552         return errorSyntax(USAGE_SETPROPERTY, "Invalid parameter '%s'", Utf8Str(argv[0]).raw());
     6552        return errorSyntax(USAGE_SETPROPERTY, "Invalid parameter '%s'", argv[0]);
    65536553
    65546554    return SUCCEEDED(rc) ? 0 : 1;
     
    65756575    if (cmd.mAction == USBFilterCmd::Invalid)
    65766576    {
    6577         return errorSyntax(USAGE_USBFILTER, "Invalid parameter '%s'", Utf8Str(argv[0]).raw());
     6577        return errorSyntax(USAGE_USBFILTER, "Invalid parameter '%s'", argv[0]);
    65786578    }
    65796579
     
    66516651                    else
    66526652                    {
    6653                         return errorArgument("Invalid -active argument '%s'", Utf8Str(argv[i]).raw());
     6653                        return errorArgument("Invalid -active argument '%s'", argv[i]);
    66546654                    }
    66556655                }
     
    67286728                    if (RT_FAILURE(rc))
    67296729                    {
    6730                         return errorArgument("Failed to convert the -maskinterfaces 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);
    67316731                    }
    67326732                    cmd.mFilter.mMaskedInterfaces = u32;
     
    67456745                    else
    67466746                    {
    6747                         return errorArgument("Invalid USB filter action '%s'", Utf8Str(argv[i]).raw());
     6747                        return errorArgument("Invalid USB filter action '%s'", argv[i]);
    67486748                    }
    67496749                }
    6750 
     6750                else
     6751                {
     6752                    return errorSyntax(cmd.mAction == USBFilterCmd::Add ? USAGE_USBFILTER_ADD : USAGE_USBFILTER_MODIFY,
     6753                                       "Unknown option '%s'", argv[i]);
     6754                }
    67516755            }
    67526756
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette