diff options
Diffstat (limited to 'src/state_file.c')
-rw-r--r-- | src/state_file.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/state_file.c b/src/state_file.c index b7f28e538..365baec0f 100644 --- a/src/state_file.c +++ b/src/state_file.c @@ -55,7 +55,7 @@ void write_state_file(void) if (!sfpath) return; - while (((fd = open(sfpath, O_WRONLY|O_TRUNC|O_CREAT)) < 0) && + while (((fd = open(sfpath, O_WRONLY|O_TRUNC|O_CREAT, 0666)) < 0) && errno == EINTR); if (fd < 0) { ERROR("problems opening state file \"%s\" for writing: %s\n", |