blob: ee23d90ab82bf8d6a8631dec17506523a0e2684d (
plain)
1
2
3
4
5
6
7
8
9
|
Creating mp3 files with u+x attributes is just silly
--- file.c
+++ file.c
@@ -136,3 +136,3 @@
file->fd = open(filename, O_WRONLY | O_CREAT | O_TRUNC,
- S_IRWXU | S_IRGRP | S_IROTH);
+ S_IRUSR|S_IWUSR | S_IRGRP | S_IROTH);
|