aboutsummaryrefslogtreecommitdiffhomepage
path: root/history.cpp
diff options
context:
space:
mode:
authorGravatar Peter Ammon <corydoras@ridiculousfish.com>2012-03-02 00:27:40 -0800
committerGravatar Peter Ammon <corydoras@ridiculousfish.com>2012-03-02 00:27:40 -0800
commit8b26d0104c1d85c271e5ce6e08bfe64a779beba7 (patch)
tree995568526f190084fd12d74bc6dcd0e828b1018a /history.cpp
parent36622c35781c3212c2102c45781a496f3e1b3659 (diff)
Some initial changes to use CLO_EXEC, with an eye towards some day using it correctly.
Diffstat (limited to 'history.cpp')
-rw-r--r--history.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/history.cpp b/history.cpp
index 71ab1dbf..c7a7549d 100644
--- a/history.cpp
+++ b/history.cpp
@@ -494,7 +494,7 @@ void history_t::load_old_if_needed(void)
if( ! filename.empty() )
{
- if( ( fd = wopen( filename, O_RDONLY ) ) > 0 )
+ if( ( fd = wopen_cloexec( filename, O_RDONLY ) ) > 0 )
{
off_t len = lseek( fd, 0, SEEK_END );
if( len != (off_t)-1)