<div>Index: src/VBox/Frontends/VBoxManage/VBoxManageInfo.cpp</div><div>===================================================================</div><div>--- src/VBox/Frontends/VBoxManage/VBoxManageInfo.cpp (revision 37092)</div>
<div>+++ src/VBox/Frontends/VBoxManage/VBoxManageInfo.cpp (working copy)</div><div>@@ -1432,6 +1432,9 @@</div><div> || (videoChannel == "1");</div><div> Bstr videoChannelQuality;</div>
<div> vrdeServer->GetVRDEProperty(Bstr("VideoChannel/Quality").raw(), videoChannelQuality.asOutParam());</div><div>+ Bstr extPack;</div><div>+ vrdeServer->GetVRDEExtPack(extPack.asOutParam());</div>
<div>+</div><div> AuthType_T authType;</div><div> const char *strAuthType;</div><div> vrdeServer->COMGETTER(AuthType)(&authType);</div><div>@@ -1476,6 +1479,7 @@</div><div> RTPrintf("vrdemulticon=\"%s\"\n", fMultiCon ? "on" : "off");</div>
<div> RTPrintf("vrdereusecon=\"%s\"\n", fReuseCon ? "on" : "off");</div><div> RTPrintf("vrdevideochannel=\"%s\"\n", fVideoChannel ? "on" : "off");</div>
<div>+ RTPrintf("vrdeextpack=%lS\n", extPack.raw());</div><div> if (fVideoChannel)</div><div> RTPrintf("vrdevideochannelquality=\"%lS\"\n", videoChannelQuality.raw());</div>
<div> }</div><div>@@ -1483,7 +1487,7 @@</div><div> {</div><div> if (address.isEmpty())</div><div> address = "0.0.0.0";</div><div>- RTPrintf("VRDE: enabled (Address %lS, Ports %lS, MultiConn: %s, ReuseSingleConn: %s, Authentication type: %s)\n", address.raw(), ports.raw(), fMultiCon ? "on" : "off", fReuseCon ? "on" : "off", strAuthType);</div>
<div>+ RTPrintf("VRDE: enabled (Address %lS, Ports %lS, ExtPack: %lS, MultiConn: %s, ReuseSingleConn: %s, Authentication type: %s)\n", address.raw(), ports.raw(), extPack.raw(), fMultiCon ? "on" : "off", fReuseCon ? "on" : "off", strAuthType);</div>
<div> if (console && currentPort != -1 && currentPort != 0)</div><div> RTPrintf("VRDE port: %d\n", currentPort);</div><div> if (fVideoChannel)</div>