]> git.lyx.org Git - lyx.git/blobdiff - src/support/tempname.C
various changes
[lyx.git] / src / support / tempname.C
index 72316279418e6669e82a711e91c9f0acaf077570..8a7785cc1adf7dc0e5fc70c22dcaac0464776cc2 100644 (file)
@@ -7,12 +7,14 @@
 #include "support/lyxlib.h"
 #include "support/filetools.h"
 #include "debug.h"
+#include "os.h"
 
 using std::endl;
 
-extern string system_tempdir;
 
-static inline
+namespace {
+
+inline
 int make_tempfile(char * templ) 
 {
 #ifdef HAVE_MKSTEMP
@@ -21,16 +23,21 @@ int make_tempfile(char * templ)
 #ifdef HAVE_MKTEMP
        // This probably just barely works...
        ::mktemp(templ);
-       return ::open(templ, O_CREAT | O_EXCL, S_IRUSR | S_IWUSR);
+       return ::open(templ, O_RDWR | O_CREAT | O_EXCL, S_IRUSR | S_IWUSR);
 #else
+#ifdef WITH_WARNINGS
 #warning FIX FIX FIX
 #endif
 #endif
+#endif
 }
-       
+
+} // namespace anon
+
+
 string const lyx::tempName(string const & dir, string const & mask)
 {
-       string const tmpdir(dir.empty() ? system_tempdir : dir);
+       string const tmpdir(dir.empty() ? os::getTmpDir() : dir);
        string tmpfl(AddName(tmpdir, mask));
        tmpfl += tostr(getpid());
        tmpfl += "XXXXXX";