You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/app-emulation/gxemul/files/0.6.0-fix-mymkstemp.patch

12 lines
253 B

--- src/old_main/misc.cc 2012-11-03 08:47:34.309732354 +0000
+++ src/old_main/misc.cc.new 2012-11-03 08:47:02.096573614 +0000
@@ -122,7 +122,7 @@
p++;
}
- h = open(templ, O_RDWR, 0600);
+ h = open(templ, O_CREAT | O_RDWR, 0600);
return h;
}