diff options
author | Matt Caswell <matt@openssl.org> | 2015-01-16 10:21:50 +0100 |
---|---|---|
committer | Matt Caswell <matt@openssl.org> | 2015-01-22 10:19:59 +0100 |
commit | c80fd6b215449f2ba7228af58979ac8709f74b82 (patch) | |
tree | 0269f83aff238ce66c2839e2a52c237caaa37ec3 /crypto/rand | |
parent | Cleanup OPENSSL_NO_xxx, part 1 (diff) | |
download | openssl-c80fd6b215449f2ba7228af58979ac8709f74b82.tar.xz openssl-c80fd6b215449f2ba7228af58979ac8709f74b82.zip |
Further comment changes for reformat (master)
Reviewed-by: Tim Hudson <tjh@openssl.org>
Diffstat (limited to 'crypto/rand')
-rw-r--r-- | crypto/rand/randfile.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/crypto/rand/randfile.c b/crypto/rand/randfile.c index 7b4c7dc319..bbe21f32c1 100644 --- a/crypto/rand/randfile.c +++ b/crypto/rand/randfile.c @@ -109,8 +109,10 @@ static FILE *(*const vms_fopen)(const char *, const char *, ...) = int RAND_load_file(const char *file, long bytes) { - /* If bytes >= 0, read up to 'bytes' bytes. - * if bytes == -1, read complete file. */ + /*- + * If bytes >= 0, read up to 'bytes' bytes. + * if bytes == -1, read complete file. + */ MS_STATIC unsigned char buf[BUFSIZE]; #ifndef OPENSSL_NO_POSIX_IO |