diff options
Diffstat (limited to 'src/mds-vt.c')
-rw-r--r-- | src/mds-vt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mds-vt.c b/src/mds-vt.c index 5072d85..7587f41 100644 --- a/src/mds-vt.c +++ b/src/mds-vt.c @@ -160,7 +160,7 @@ static int write_vt_file(void) *intbuf = display_vt; *(struct stat*)(buf + sizeof(int) / sizeof(char)) = old_vt_stat; - fail_if (open(vtfile_path, O_WRONLY | O_CREAT), fd < 0); + fail_if (open(vtfile_path, O_WRONLY | O_CREAT, 0644), fd < 0); fail_if (full_write(fd, buf, sizeof(buf))); return 0; fail: |