X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=src%2Ffdset.c;h=e67fe6fabfb7fb1bae0b5b56ebadcc4ddda13372;hp=29e75a03460550bf1d4e70866a451586ba86c8d7;hb=0237edf7d24a53792122ec1c8225babf2ad3e227;hpb=addab137cd8d318e4f543ca56018ee23d51aaca9 diff --git a/src/fdset.c b/src/fdset.c index 29e75a034..e67fe6fab 100644 --- a/src/fdset.c +++ b/src/fdset.c @@ -49,7 +49,13 @@ void fdset_free(FDSet *s) { * here, so that the EBADFD that valgrind will return * us on close() doesn't influence us */ - /* log_warning("Closing left-over fd %i", PTR_TO_FD(p)); */ + /* When reloading duplicates of the private bus + * connection fds and suchlike are closed here, which + * has no effect at all, since they are only + * duplicates. So don't be surprised about these log + * messages. */ + + log_debug("Closing left-over fd %i", PTR_TO_FD(p)); close_nointr(PTR_TO_FD(p)); }