From: Steinar H. Gunderson Date: Thu, 15 Aug 2013 17:40:08 +0000 (+0200) Subject: Fix broken umask (we had the bits inverted). X-Git-Tag: 1.0.0~25 X-Git-Url: https://git.sesse.net/?p=cubemap;a=commitdiff_plain;h=4a33511c426ae90abb261f09fda1e31e0c30ca16 Fix broken umask (we had the bits inverted). --- diff --git a/util.cpp b/util.cpp index 1b76962..25a8da4 100644 --- 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) {