]> git.sesse.net Git - cubemap/commitdiff
Fix broken umask (we had the bits inverted).
authorSteinar H. Gunderson <sgunderson@bigfoot.com>
Thu, 15 Aug 2013 17:40:08 +0000 (19:40 +0200)
committerSteinar H. Gunderson <sgunderson@bigfoot.com>
Thu, 15 Aug 2013 17:40:08 +0000 (19:40 +0200)
util.cpp

index 1b76962a2b1e5061209da30acfaff172a8d4e981..25a8da4a1e8893ca2407615d418aeab7fffe81d5 100644 (file)
--- a/util.cpp
+++ b/util.cpp
@@ -13,7 +13,7 @@ using namespace std;
 int make_tempfile(const std::string &contents)
 {
        char filename[] = "/tmp/cubemap.XXXXXX";
-       mode_t old_umask = umask(0600);
+       mode_t old_umask = umask(077);
        int fd = mkstemp(filename);
        umask(old_umask);
        if (fd == -1) {