2
0
mirror of git://github.com/lxc/lxc synced 2025-08-31 02:09:31 +00:00

Merge pull request #2721 from 2xsec/tizen

dlog: move match_dlog_fds()
This commit is contained in:
Christian Brauner
2018-11-08 11:40:34 +01:00
committed by GitHub

View File

@@ -297,17 +297,17 @@ restart:
if (matched) if (matched)
continue; continue;
#ifdef HAVE_DLOG
if (match_dlog_fds(direntp))
continue;
#endif
if (current_config && fd == current_config->logfd) if (current_config && fd == current_config->logfd)
continue; continue;
if (match_stdfds(fd)) if (match_stdfds(fd))
continue; continue;
#ifdef HAVE_DLOG
if (match_dlog_fds(direntp))
continue;
#endif
if (closeall) { if (closeall) {
close(fd); close(fd);
closedir(dir); closedir(dir);