Improve subprocess behavior in tinc start command.
authorEtienne Dechamps <etienne@edechamps.fr>
Sat, 12 Jul 2014 17:53:25 +0000 (18:53 +0100)
committerEtienne Dechamps <etienne@edechamps.fr>
Sat, 12 Jul 2014 17:57:20 +0000 (18:57 +0100)
commitea12a0fb066793c316ccc9ef21444f092f74b4ba
treeec187a5f56cb1e87b6f2018789e5995d037be9c8
parentb22499668a7aa63c619cb8fa8535282a38841ce9
Improve subprocess behavior in tinc start command.

When invoking tincd, tinc start currently uses the execvp() function,
which doesn't behave well in a console as the console displays a new
prompt before the subprocess finishes (which makes me suspect the exit
value is not handled at all). This new code uses spawnvp() instead,
which seems like a better fit.
src/tincctl.c