﻿id,summary,reporter,owner,description,type,status,component,version,resolution,keywords,cc,guest,host
17409,"MODIFYVM_AUDIOOUT in VBoxManageModifyVM.cpp, a copy of MODIFYVM_AUDIOIN -> fixed in 5.2.12",Socratis,,"This was brought to my attention from an IRC user (jerryaldrichiii) that when setting ""--audioout on"", it wasn't working. I verified it that the wrong setting was written in the .vbox file. I was also pointed to a forums topic, ""[https://forums.virtualbox.org/viewtopic.php?f=7&t=85710 5.2.0 r118431 Sound Problem]"" which was talking about the same thing.

Digging a little bit more, I found out that the two cases MODIFYVM_AUDIOOUT and MODIFYVM_AUDIOIN in ""VBoxManageModifyVM.cpp"", seem to be a copy/paste. The line:
{{{
CHECK_ERROR(audioAdapter, COMSETTER(EnabledIn)(ValueUnion.f));
                                           ^^
}}}
in the MODIFYVM_AUDIOOUT case should be:
{{{
CHECK_ERROR(audioAdapter, COMSETTER(EnabledOut)(ValueUnion.f));
                                           ^^^
}}}
I put the version as 5.2.0, since according to the forum post, this must have been going on since the 5.2.0 days.",defect,closed,other,VirtualBox 5.2.0,fixed,"audio out, settings",,all,all
