Replaced atooi() with strtoul(..., 8). That's part of C89 and thus okay for us.
[mmh] / config / config.c
index 0e725ee..82c66c3 100644 (file)
@@ -181,14 +181,13 @@ char *altmsglink = "@";
 /*
 ** Folders (directories) are created with this protection (mode)
 */
-char *foldprot = "700";
+char *foldprot = "0700";
 
 /*
 ** Every NEW message will be created with this protection.  When a
-** message is filed it retains its protection, so this only applies
-** to messages coming in through inc.
+** message is filed it retains its protection.
 */
-char *msgprot = "600";
+char *msgprot = "0600";