=== modified file 'TODO' --- TODO 2010-09-07 16:48:58 +0000 +++ TODO 2010-09-09 22:06:10 +0000 @@ -86,7 +86,7 @@ http://0pointer.de/blog/projects/systemd.html ** TODO Separate logging logic to own object ** TODO make clients to a dict! -** TODO PropertyChanged should be a python generic property for client variables +** TODO [#A] Limit approved_delay to max gnutls/tls timeout value * mandos.xml ** [[file:mandos.xml::XXX][Document D-Bus interface]] === modified file 'plugin-runner.c' --- plugin-runner.c 2010-09-07 16:48:58 +0000 +++ plugin-runner.c 2010-09-09 22:06:10 +0000 @@ -1001,12 +1001,12 @@ } if(p->environ[0] == NULL){ if(execv(filename, p->argv) < 0){ - error(0, errno, "execv"); + error(0, errno, "execv for %s", filename); _exit(EX_OSERR); } } else { if(execve(filename, p->argv, p->environ) < 0){ - error(0, errno, "execve"); + error(0, errno, "execve for %s", filename); _exit(EX_OSERR); } }