aboutsummaryrefslogtreecommitdiffstats
path: root/recipes-support/obexpush/files/fix-open.patch
diff options
context:
space:
mode:
Diffstat (limited to 'recipes-support/obexpush/files/fix-open.patch')
-rw-r--r--recipes-support/obexpush/files/fix-open.patch18
1 files changed, 18 insertions, 0 deletions
diff --git a/recipes-support/obexpush/files/fix-open.patch b/recipes-support/obexpush/files/fix-open.patch
new file mode 100644
index 0000000..1280daf
--- /dev/null
+++ b/recipes-support/obexpush/files/fix-open.patch
@@ -0,0 +1,18 @@
+Index: obexpush/opd/main.c
+===================================================================
+--- obexpush.orig/opd/main.c
++++ obexpush/opd/main.c
+@@ -562,11 +562,11 @@ int main(int argc, char **argv,char *env
+ dup2(fd, 0);
+ close(fd);
+
+- fd = open("_opd_msgs.txt", O_RDWR | O_CREAT);
++ fd = open("_opd_msgs.txt", O_RDWR | O_CREAT, S_IRUSR | S_IWUSR);
+ dup2(fd, 1);
+ close(fd);
+
+- fd = open("_opd_errs.txt", O_RDWR | O_CREAT);
++ fd = open("_opd_errs.txt", O_RDWR | O_CREAT, S_IRUSR | S_IWUSR);
+ dup2(fd, 2);
+ close(fd);
+