Create ~/.rnd with mode 0600 instead of 0666
authorJakub Wilk <jwilk@debian.org>
Sat, 7 Jun 2014 12:37:17 +0000 (14:37 +0200)
committerMatt Caswell <matt@openssl.org>
Sun, 8 Jun 2014 20:15:48 +0000 (21:15 +0100)
commit7be1d8764d30d2f04696d7f834df349bc4bffd73
tree1e82d90177bab7f7fd5174a489002ec0b548674a
parentfb8d9ddb9dc19d84dffa84932f75e607c8a3ffe6
Create ~/.rnd with mode 0600 instead of 0666

Because of a missing include <fcntl.h> we don't have O_CREATE and don't create
the file with open() using mode 0600 but fall back to using fopen() with the
default umask followed by a chmod().

Problem found by Jakub Wilk <jwilk@debian.org>.
crypto/rand/randfile.c