Forget the last message, found it:

In lsyncd.c where it says:
-----
    // disconnects stdstreams
    if (!freopen("/dev/null", "r", stdin) ||
        !freopen("/dev/null", "r", stdout) ||
        !freopen("/dev/null", "r", stderr)
    ) {
-----
change that to
-----
    // disconnects stdstreams
    if (!freopen("/dev/null", "r", stdin) ||
        !freopen("/dev/null", "w", stdout) ||
        !freopen("/dev/null", "w", stderr)
    ) {
-----

Sorry for that bug, what a stupid error.

Thanks again for the excellent detective work!
- Axel



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org

Reply via email to