chiark / gitweb /
always use the same code for creating temporary files
[elogind.git] / src / shared / ask-password-api.c
index c9c82b25206d9444778e6432be5ec071b08758be..a328f145e9d7288a1b50c1205a74df42f7b77b89 100644 (file)
@@ -325,10 +325,7 @@ int ask_password_agent(
 
         mkdir_p_label("/run/systemd/ask-password", 0755);
 
-        RUN_WITH_UMASK(0022) {
-                fd = mkostemp(temp, O_CLOEXEC|O_CREAT|O_WRONLY);
-        }
-
+        fd = mkostemp_safe(temp, O_WRONLY|O_CLOEXEC);
         if (fd < 0) {
                 log_error("Failed to create password file: %m");
                 r = -errno;