Unverified Commit b67cc0b8 by 2xsec Committed by Christian Brauner

dlog: move match_dlog_fds()

Signed-off-by: 's avatar2xsec <dh48.jeong@samsung.com>
parent 94abc19b
...@@ -297,17 +297,17 @@ restart: ...@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment