2
0
mirror of git://github.com/lxc/lxc synced 2025-08-29 18:29:52 +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
commit 30acf2823b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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