chiark / gitweb /
cryptsetup: only warn on real key files
[elogind.git] / src / cryptsetup / cryptsetup.c
index e6b37acb8620bc1da130fa1cffb05d7ae43ca488..26141a01b087b9bfa429386f7b436892f79d9760 100644 (file)
@@ -624,7 +624,7 @@ int main(int argc, char *argv[]) {
 
                         /* Ideally we'd do this on the open fd, but since this is just a
                          * warning it's OK to do this in two steps. */
-                        if (stat(key_file, &st) >= 0 && (st.st_mode & 0005))
+                        if (stat(key_file, &st) >= 0 && S_ISREG(st.st_mode) && (st.st_mode & 0005))
                                 log_warning("Key file %s is world-readable. This is not a good idea!", key_file);
                 }