diff options
author | Alexander Kuleshov <kuleshovmail@gmail.com> | 2016-07-02 23:42:01 +0600 |
---|---|---|
committer | Alexander Kuleshov <kuleshovmail@gmail.com> | 2016-07-02 23:42:01 +0600 |
commit | 913f38e4402ad19529b13fdb56db77eaa2b9f30a (patch) | |
tree | c97ecaa404ee1f4ced036d4f8a54e1b7d2a2efb2 /src/import/import-common.c | |
parent | 3b9a1d87cc468cfcd6f9ddfd98ac389fa5840f10 (diff) |
treewide: use stdio_unset_cloexec() function
Diffstat (limited to 'src/import/import-common.c')
-rw-r--r-- | src/import/import-common.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/import/import-common.c b/src/import/import-common.c index 287a3382a1..81209cdaf6 100644 --- a/src/import/import-common.c +++ b/src/import/import-common.c @@ -125,9 +125,7 @@ int import_fork_tar_x(const char *path, pid_t *ret) { if (null_fd != STDOUT_FILENO) null_fd = safe_close(null_fd); - fd_cloexec(STDIN_FILENO, false); - fd_cloexec(STDOUT_FILENO, false); - fd_cloexec(STDERR_FILENO, false); + stdio_unset_cloexec(); if (unshare(CLONE_NEWNET) < 0) log_error_errno(errno, "Failed to lock tar into network namespace, ignoring: %m"); @@ -199,9 +197,7 @@ int import_fork_tar_c(const char *path, pid_t *ret) { if (null_fd != STDIN_FILENO) null_fd = safe_close(null_fd); - fd_cloexec(STDIN_FILENO, false); - fd_cloexec(STDOUT_FILENO, false); - fd_cloexec(STDERR_FILENO, false); + stdio_unset_cloexec(); if (unshare(CLONE_NEWNET) < 0) log_error_errno(errno, "Failed to lock tar into network namespace, ignoring: %m"); |