Changeset 38011 in vbox
- Timestamp:
- Jul 18, 2011 11:57:29 AM (13 years ago)
- Location:
- trunk/src/VBox/Frontends/VBoxManage
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/VBoxManageHelp.cpp
r37971 r38011 335 335 "VBoxManage clonevm <uuid>|<name>\n" 336 336 " [--snapshot <uuid>|<name>]\n" 337 " [--mode machine|machineandchild s|all]\n"337 " [--mode machine|machineandchildren|all]\n" 338 338 " [--options link|keepallmacs|keepnatmacs|\n" 339 339 " keepdisknames]\n" -
trunk/src/VBox/Frontends/VBoxManage/VBoxManageMisc.cpp
r37971 r38011 282 282 if (!RTStrICmp(psz, "machine")) 283 283 *pMode = CloneMode_MachineState; 284 else if (!RTStrICmp(psz, "machineandchild s"))284 else if (!RTStrICmp(psz, "machineandchildren")) 285 285 *pMode = CloneMode_MachineAndChildStates; 286 286 else if (!RTStrICmp(psz, "all"))
Note:
See TracChangeset
for help on using the changeset viewer.