diff --git a/Userland/touch.cpp b/Userland/touch.cpp index 3d0dcb58bf..690e6d8671 100644 --- a/Userland/touch.cpp +++ b/Userland/touch.cpp @@ -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;