=== modified file 'mandos' --- mandos 2009-09-17 14:21:18 +0000 +++ mandos 2009-09-19 19:18:49 +0000 @@ -983,9 +983,6 @@ clients: set of Client objects gnutls_priority GnuTLS priority string use_dbus: Boolean; to emit D-Bus signals or not - clients: set of Client objects - gnutls_priority GnuTLS priority string - use_dbus: Boolean; to emit D-Bus signals or not Assumes a gobject.MainLoop event loop. """ === modified file 'plugin-runner.c' --- plugin-runner.c 2009-09-10 06:28:14 +0000 +++ plugin-runner.c 2009-09-19 19:18:49 +0000 @@ -968,7 +968,8 @@ goto fallback; } - FD_SET(new_plugin->fd, &rfds_all); + FD_SET(new_plugin->fd, &rfds_all); /* Spurious warning from + -Wconversion */ if(maxfd < new_plugin->fd){ maxfd = new_plugin->fd; @@ -1028,7 +1029,8 @@ } /* Remove the plugin */ - FD_CLR(proc->fd, &rfds_all); + FD_CLR(proc->fd, &rfds_all); /* Spurious warning from + -Wconversion */ /* Block signal while modifying process_list */ ret = (int)TEMP_FAILURE_RETRY(sigprocmask @@ -1074,7 +1076,9 @@ } /* This process has not completed. Does it have any output? */ - if(proc->eof or not FD_ISSET(proc->fd, &rfds)){ + if(proc->eof or not FD_ISSET(proc->fd, &rfds)){ /* Spurious + warning from + -Wconversion */ /* This process had nothing to say at this time */ proc = proc->next; continue;