summaryrefslogtreecommitdiff
path: root/src/lib/libssl/src/apps/rand.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libssl/src/apps/rand.c')
-rw-r--r--src/lib/libssl/src/apps/rand.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libssl/src/apps/rand.c b/src/lib/libssl/src/apps/rand.c
index 884c244486..c01df530ae 100644
--- a/src/lib/libssl/src/apps/rand.c
+++ b/src/lib/libssl/src/apps/rand.c
@@ -168,7 +168,7 @@ int MAIN(int argc, char **argv)
168#ifndef OPENSSL_NO_ENGINE 168#ifndef OPENSSL_NO_ENGINE
169 BIO_printf(bio_err, "-engine e - use engine e, possibly a hardware device.\n"); 169 BIO_printf(bio_err, "-engine e - use engine e, possibly a hardware device.\n");
170#endif 170#endif
171 BIO_printf(bio_err, "-rand file%cfile%c... - seed PRNG from files\n", LIST_SEPARATOR_CHAR, LIST_SEPARATOR_CHAR); 171 BIO_printf(bio_err, "-rand file%cfile%c... - seed PRNG from files\n", ':', ':');
172 BIO_printf(bio_err, "-base64 - base64 encode output\n"); 172 BIO_printf(bio_err, "-base64 - base64 encode output\n");
173 BIO_printf(bio_err, "-hex - hex encode output\n"); 173 BIO_printf(bio_err, "-hex - hex encode output\n");
174 goto err; 174 goto err;
@@ -235,5 +235,5 @@ err:
235 if (out) 235 if (out)
236 BIO_free_all(out); 236 BIO_free_all(out);
237 apps_shutdown(); 237 apps_shutdown();
238 OPENSSL_EXIT(ret); 238 return(ret);
239 } 239 }