diff options
| author | Jung-uk Kim <jkim@FreeBSD.org> | 2016-09-22 13:04:03 +0000 | 
|---|---|---|
| committer | Jung-uk Kim <jkim@FreeBSD.org> | 2016-09-22 13:04:03 +0000 | 
| commit | e1b483878d9824c63d376895da633b0b96fbbaed (patch) | |
| tree | 0846e185ed4cc1159a684e408e772c86ae0fc1a7 /apps/enc.c | |
| parent | 57f1256b1a087adbdf8e5c080dd9ed7975de939a (diff) | |
Diffstat (limited to 'apps/enc.c')
| -rw-r--r-- | apps/enc.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/apps/enc.c b/apps/enc.c index 7b7c70b132d72..8e2ef27aca34f 100644 --- a/apps/enc.c +++ b/apps/enc.c @@ -509,7 +509,7 @@ int MAIN(int argc, char **argv)                              BIO_printf(bio_err, "invalid hex salt value\n");                              goto end;                          } -                    } else if (RAND_pseudo_bytes(salt, sizeof salt) < 0) +                    } else if (RAND_bytes(salt, sizeof salt) <= 0)                          goto end;                      /*                       * If -P option then don't bother writing | 
