diff options
author | deraadt <> | 2014-04-17 20:58:08 +0000 |
---|---|---|
committer | deraadt <> | 2014-04-17 20:58:08 +0000 |
commit | dea2616f54bc531ab8af0d74ac00fd23f61ba61d (patch) | |
tree | a5c70a75ed1efb1996231f6e5bcd7edfd923d47c /src/lib/libssl/src/apps/genrsa.c | |
parent | 6800e69ce3db198d08e1e509efdb706f4d2b4cf0 (diff) | |
download | openbsd-dea2616f54bc531ab8af0d74ac00fd23f61ba61d.tar.gz openbsd-dea2616f54bc531ab8af0d74ac00fd23f61ba61d.tar.bz2 openbsd-dea2616f54bc531ab8af0d74ac00fd23f61ba61d.zip |
Mostly gut e_os.h:
USE_SOCKETS is unrelated to using sockets, but just pulls in .h files. It
makes every file buy a kitchen sink, because 11 files forgot to.
EXIT() is really exit(), a gentle surprise
but... OPENSSL_EXIT() is really just return(), because noone compiles the
openssl command non-monolithic anymore
Diffstat (limited to 'src/lib/libssl/src/apps/genrsa.c')
-rw-r--r-- | src/lib/libssl/src/apps/genrsa.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libssl/src/apps/genrsa.c b/src/lib/libssl/src/apps/genrsa.c index 65e136a8d2..e6e9877cb9 100644 --- a/src/lib/libssl/src/apps/genrsa.c +++ b/src/lib/libssl/src/apps/genrsa.c | |||
@@ -215,7 +215,7 @@ bad: | |||
215 | #ifndef OPENSSL_NO_ENGINE | 215 | #ifndef OPENSSL_NO_ENGINE |
216 | BIO_printf(bio_err, " -engine e use engine e, possibly a hardware device.\n"); | 216 | BIO_printf(bio_err, " -engine e use engine e, possibly a hardware device.\n"); |
217 | #endif | 217 | #endif |
218 | BIO_printf(bio_err, " -rand file%cfile%c...\n", LIST_SEPARATOR_CHAR, LIST_SEPARATOR_CHAR); | 218 | BIO_printf(bio_err, " -rand file%cfile%c...\n", ':', ':'); |
219 | BIO_printf(bio_err, " load the file (or the files in the directory) into\n"); | 219 | BIO_printf(bio_err, " load the file (or the files in the directory) into\n"); |
220 | BIO_printf(bio_err, " the random number generator\n"); | 220 | BIO_printf(bio_err, " the random number generator\n"); |
221 | goto err; | 221 | goto err; |
@@ -296,7 +296,7 @@ err: | |||
296 | if (ret != 0) | 296 | if (ret != 0) |
297 | ERR_print_errors(bio_err); | 297 | ERR_print_errors(bio_err); |
298 | apps_shutdown(); | 298 | apps_shutdown(); |
299 | OPENSSL_EXIT(ret); | 299 | return(ret); |
300 | } | 300 | } |
301 | 301 | ||
302 | static int | 302 | static int |