Changeset 39169 in vbox
- Timestamp:
- Nov 2, 2011 7:17:45 AM (13 years ago)
- Location:
- trunk/src/VBox/Frontends/VBoxManage
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/VBoxManageDisk.cpp
r38787 r39169 797 797 { 798 798 srcfilename = ValueUnion.psz; 799 // If you change the OS list here don't forget to update VBoxManageHelp.cpp.800 #ifndef RT_OS_WINDOWS801 799 fReadFromStdIn = !strcmp(srcfilename, "stdin"); 802 #endif803 800 } 804 801 else if (!dstfilename) … … 834 831 RTFILE File; 835 832 if (fReadFromStdIn) 836 File = 0;833 rc = RTFileFromNative(&File, RTFILE_NATIVE_STDIN); 837 834 else 838 835 rc = RTFileOpen(&File, srcfilename, RTFILE_O_READ | RTFILE_O_OPEN | RTFILE_O_DENY_WRITE); -
trunk/src/VBox/Frontends/VBoxManage/VBoxManageHelp.cpp
r39168 r39169 547 547 " [--variant Standard,Fixed,Split2G,Stream,ESX]\n" 548 548 " [--uuid <uuid>]\n" 549 #ifndef RT_OS_WINDOWS550 549 "VBoxManage convertfromraw stdin <outputfile> <bytes>\n" 551 550 " [--format VDI|VMDK|VHD]\n" 552 551 " [--variant Standard,Fixed,Split2G,Stream,ESX]\n" 553 552 " [--uuid <uuid>]\n" 554 #endif555 553 "\n"); 556 554
Note:
See TracChangeset
for help on using the changeset viewer.