summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/or/keypin.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/or/keypin.c b/src/or/keypin.c
index 66525cbf90..52bdff816c 100644
--- a/src/or/keypin.c
+++ b/src/or/keypin.c
@@ -289,6 +289,9 @@ static int keypin_journal_fd = -1;
int
keypin_open_journal(const char *fname)
{
+#ifndef O_SYNC
+#define O_SYNC 0
+#endif
int fd = tor_open_cloexec(fname, O_WRONLY|O_CREAT|O_BINARY|O_SYNC, 0600);
if (fd < 0)
goto err;