Loading crypto/rand/randfile.c +4 −2 Original line number Diff line number Diff line Loading @@ -157,6 +157,8 @@ int RAND_write_file(const char *file) int fd = open(file, O_CREAT | O_EXCL, 0600); if (fd != -1) out = fdopen(fd, "wb"); else /* the open(...) reportedly fails on Win98 w/ VisualC */ out = fopen(file,"wb"); #else out = fopen(file,"wb"); #endif Loading Loading
crypto/rand/randfile.c +4 −2 Original line number Diff line number Diff line Loading @@ -157,6 +157,8 @@ int RAND_write_file(const char *file) int fd = open(file, O_CREAT | O_EXCL, 0600); if (fd != -1) out = fdopen(fd, "wb"); else /* the open(...) reportedly fails on Win98 w/ VisualC */ out = fopen(file,"wb"); #else out = fopen(file,"wb"); #endif Loading