Unverified Commit 30acf282 by Christian Brauner Committed by GitHub

Merge pull request #2721 from 2xsec/tizen

dlog: move match_dlog_fds()
parents d2b2f629 1d5e5f26
...@@ -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