diff options
Diffstat (limited to 'app-emulation/gxemul/files/gxemul-0.6.0-fix-mymkstemp.patch')
-rw-r--r-- | app-emulation/gxemul/files/gxemul-0.6.0-fix-mymkstemp.patch | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/app-emulation/gxemul/files/gxemul-0.6.0-fix-mymkstemp.patch b/app-emulation/gxemul/files/gxemul-0.6.0-fix-mymkstemp.patch new file mode 100644 index 000000000000..c9e21bcc4b33 --- /dev/null +++ b/app-emulation/gxemul/files/gxemul-0.6.0-fix-mymkstemp.patch @@ -0,0 +1,11 @@ +--- a/src/old_main/misc.cc 2012-11-03 08:47:34.309732354 +0000 ++++ b/src/old_main/misc.cc 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; + } + |