Changeset 35194 in vbox for trunk/src/VBox/Frontends/VBoxManage
- Timestamp:
- Dec 16, 2010 3:36:09 PM (14 years ago)
- Location:
- trunk/src/VBox/Frontends/VBoxManage
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/VBoxManageControlVM.cpp
r35146 r35194 610 610 } 611 611 } 612 else if (!strcmp(a->argv[1], "vrdpport")) 613 { 612 else if ( !strcmp(a->argv[1], "vrdeport") 613 || !strcmp(a->argv[1], "vrdpport")) 614 { 615 if (!strcmp(a->argv[1], "vrdpport")) 616 RTStrmPrintf(g_pStdErr, "Warning: 'vrdpport' is deprecated. Use 'vrdeport'.\n"); 617 614 618 if (a->argc <= 1 + 1) 615 619 { … … 618 622 break; 619 623 } 620 621 RTStrmPrintf(g_pStdErr, "Warning: 'vrdpport' is deprecated. Use 'vrdeproperty TCP/Ports=%s'.\n", a->argv[2]);622 624 623 625 ComPtr<IVRDEServer> vrdeServer; -
trunk/src/VBox/Frontends/VBoxManage/VBoxManageHelp.cpp
r35101 r35194 296 296 " [--vrdeextpack default|<name>\n" 297 297 " [--vrdeproperty <name=[value]>]\n" 298 " [--vrdeport <hostport>]\n" 299 " [--vrdeaddress <hostip>]\n" 298 300 " [--vrdeauthtype null|external|guest]\n" 299 301 " [--vrdeauthlibrary default|<name>\n" … … 385 387 " vrde on|off |\n"); 386 388 RTStrmPrintf(pStrm, 389 " vrdeport <port> |\n" 387 390 " vrdeproperty <name=[value]> |\n" 388 391 " vrdevideochannelquality <percent>\n");
Note:
See TracChangeset
for help on using the changeset viewer.