Stop attempting to make session logs private on Unix. This was introduced in
[u/mdw/putty] / unix / uxmisc.c
index 4c6a767..dd04e6f 100644 (file)
@@ -141,7 +141,8 @@ FILE *f_open(struct Filename filename, char const *mode, int is_private)
        return fopen(filename.path, mode);
     } else {
        int fd;
-       assert(mode[0] == 'w');        /* is_private is meaningless for read */
+       assert(mode[0] == 'w');        /* is_private is meaningless for read,
+                                         and tricky for append */
        fd = open(filename.path, O_WRONLY | O_CREAT | O_TRUNC,
                      0700);
        if (fd < 0)