mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-23 17:52:26 -05:00
touch: Newly created files were accidentally marked as FIFO's.
This commit is contained in:
parent
fd500c79d6
commit
91f561a417
Notes:
sideshowbarker
2024-07-19 14:36:59 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/91f561a417f
1 changed files with 1 additions and 1 deletions
|
@ -33,7 +33,7 @@ int main(int argc, char** argv)
|
|||
if (rc < 0)
|
||||
perror("utime");
|
||||
} else {
|
||||
int fd = open(argv[1], O_CREAT, 0010644);
|
||||
int fd = open(argv[1], O_CREAT, 0100644);
|
||||
if (fd < 0) {
|
||||
perror("open");
|
||||
return 1;
|
||||
|
|
Loading…
Add table
Reference in a new issue