diff options
author | Lennart Poettering <lennart@poettering.net> | 2014-02-13 14:59:56 +0100 |
---|---|---|
committer | Anthony G. Basile <blueness@gentoo.org> | 2014-02-21 10:05:34 -0500 |
commit | 4e918b7253bd541a76d3d9641d0be86dd8e132d3 (patch) | |
tree | 8839977cdc60aa636d33082a8816e7e934c0bfb4 /src/ata_id | |
parent | 9fa108ac48c9b76111589967184436bf63109731 (diff) |
everywhere: always use O_CLOEXEC where it makes sense
Signed-off-by: Anthony G. Basile <blueness@gentoo.org>
Diffstat (limited to 'src/ata_id')
-rw-r--r-- | src/ata_id/ata_id.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ata_id/ata_id.c b/src/ata_id/ata_id.c index 649890618e..f84281dd1a 100644 --- a/src/ata_id/ata_id.c +++ b/src/ata_id/ata_id.c @@ -468,7 +468,7 @@ int main(int argc, char *argv[]) goto exit; } - fd = open(node, O_RDONLY|O_NONBLOCK); + fd = open(node, O_RDONLY|O_NONBLOCK|O_CLOEXEC); if (fd < 0) { log_error("unable to open '%s'", node); rc = 1; |