Changeset 24505 in vbox for trunk/src/VBox
- Timestamp:
- Nov 9, 2009 1:47:06 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 54598
- Location:
- trunk/src/VBox/Frontends/VBoxManage
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/VBoxManageHelp.cpp
r24504 r24505 361 361 " --medium <none|emptydrive|uuid|filename|host:<drive>>]\n" 362 362 " [--passthrough <on|off>]\n" 363 " [--forceunmount <on|off>]\n"363 " [--forceunmount]\n" 364 364 "\n"); 365 365 } -
trunk/src/VBox/Frontends/VBoxManage/VBoxManageStorageController.cpp
r24504 r24505 55 55 { "--type", 't', RTGETOPT_REQ_STRING }, 56 56 { "--passthrough", 'h', RTGETOPT_REQ_STRING }, 57 { "--forceunmount", 'f', RTGETOPT_REQ_ BOOL_ONOFF},57 { "--forceunmount", 'f', RTGETOPT_REQ_NOTHING }, 58 58 }; 59 59 … … 138 138 } 139 139 140 case 'f': // force unmount medium during runtime <on|off>141 { 142 fForceUnmount = ValueUnion.f;140 case 'f': // force unmount medium during runtime 141 { 142 fForceUnmount = true; 143 143 break; 144 144 }
Note:
See TracChangeset
for help on using the changeset viewer.