summaryrefslogtreecommitdiffstats
path: root/lib/libutil/flopen.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libutil/flopen.c')
-rw-r--r--lib/libutil/flopen.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libutil/flopen.c b/lib/libutil/flopen.c
index 92254cc..b99055e 100644
--- a/lib/libutil/flopen.c
+++ b/lib/libutil/flopen.c
@@ -63,7 +63,7 @@ flopen(const char *path, int flags, ...)
operation |= LOCK_NB;
truncate = (flags & O_TRUNC);
- flags |= ~O_TRUNC;
+ flags &= ~O_TRUNC;
for (;;) {
if ((fd = open(path, flags, mode)) == -1)
OpenPOWER on IntegriCloud