Comment 11 for bug 621188

Revision history for this message
Daniele E. Domenichelli (daniele.domenichelli) wrote :

I'm using version 0.3.8.1 too
I found that the real bug is not there but in lines

193 { "use-jack", '\0',
194 POPT_ARG_STRING | RMD_USE_JACK_EXTRA_FLAG, &arg_return->x, RMD_ARG_USE_JACK,

replacing &arg_return->x with 0 fix this issue

193 { "use-jack", '\0',
194 POPT_ARG_STRING | RMD_USE_JACK_EXTRA_FLAG, 0, RMD_ARG_USE_JACK,

There is still some problem with "--use-jack", because even though the documentation says that recordmydesktop will connect to all the ports specified, it connects only to the first.
But maybe it should be reported as a different bug, fixing line 194 is enough to close this bug...