- Timestamp:
- Mar 12, 2022 7:35:12 PM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 150458
- Location:
- trunk/src/VBox/Frontends/VBoxManage
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/VBoxManage.cpp
r94201 r94202 210 210 { "clonevdi", USAGE_S_NEWCMD, HELP_CMD_CLONEMEDIUM, handleCloneMedium, 0 }, /* backward compatibility */ 211 211 { "encryptmedium", USAGE_S_NEWCMD,HELP_CMD_ENCRYPTMEDIUM, handleEncryptMedium, 0 }, 212 { "checkmediumpwd", USAGE_ MEDIUMENCCHKPWD, VBMG_CMD_TODO, handleCheckMediumPassword, 0 },212 { "checkmediumpwd", USAGE_S_NEWCMD,HELP_CMD_CHECKMEDIUMPWD, handleCheckMediumPassword, 0 }, 213 213 { "createvm", USAGE_S_NEWCMD, HELP_CMD_CREATEVM, handleCreateVM, 0 }, 214 214 { "modifyvm", USAGE_S_NEWCMD, HELP_CMD_MODIFYVM, handleModifyVM, 0 }, -
trunk/src/VBox/Frontends/VBoxManage/VBoxManage.h
r94201 r94202 132 132 USAGE_I_REPAIRHD, 133 133 USAGE_NATNETWORK, 134 USAGE_MEDIUMENCCHKPWD,135 134 USAGE_USBDEVSOURCE, 136 135 /* Insert new entries before this line, but only if it is not an option -
trunk/src/VBox/Frontends/VBoxManage/VBoxManageDisk.cpp
r94201 r94202 2116 2116 2117 2117 if (a->argc != 2) 2118 return errorSyntax( USAGE_MEDIUMENCCHKPWD,Disk::tr("Invalid number of arguments: %d"), a->argc);2118 return errorSyntax(Disk::tr("Invalid number of arguments: %d"), a->argc); 2119 2119 2120 2120 pszFilenameOrUuid = a->argv[0]; -
trunk/src/VBox/Frontends/VBoxManage/VBoxManageHelp.cpp
r94201 r94202 639 639 "\n", SEP); 640 640 641 if (enmCommand == USAGE_MEDIUMENCCHKPWD || enmCommand == USAGE_S_ALL)642 RTStrmPrintf(pStrm,643 "%s checkmediumpwd %s <uuid|filename>\n"644 " <pwd file>|-\n"645 "\n", SEP);646 647 641 if (enmCommand == USAGE_CONVERTFROMRAW || enmCommand == USAGE_S_ALL) 648 642 RTStrmPrintf(pStrm,
Note:
See TracChangeset
for help on using the changeset viewer.