diff options
author | 2014-04-17 21:04:32 +0000 | |
---|---|---|
committer | 2014-04-17 21:04:32 +0000 | |
commit | d70fc6722ed334927548ccde290635aefffad135 (patch) | |
tree | 7f8b779909897143521794ffc9dd5149aae67bca /lib/libssl/src | |
parent | Mostly gut e_os.h: (diff) | |
download | wireguard-openbsd-d70fc6722ed334927548ccde290635aefffad135.tar.xz wireguard-openbsd-d70fc6722ed334927548ccde290635aefffad135.zip |
since we're replacing LIST_SEPARATOR_CHAR with ':', no point using %c
in the help printf
Diffstat (limited to 'lib/libssl/src')
-rw-r--r-- | lib/libssl/src/apps/req.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libssl/src/apps/req.c b/lib/libssl/src/apps/req.c index 22302c5c303..527b893a280 100644 --- a/lib/libssl/src/apps/req.c +++ b/lib/libssl/src/apps/req.c @@ -422,7 +422,7 @@ bad: BIO_printf(bio_err," -key file use the private key contained in file\n"); BIO_printf(bio_err," -keyform arg key file format\n"); BIO_printf(bio_err," -keyout arg file to send the key to\n"); - BIO_printf(bio_err," -rand file%cfile%c...\n", ':', ':'); + BIO_printf(bio_err," -rand file:file:...\n"); BIO_printf(bio_err," load the file (or the files in the directory) into\n"); BIO_printf(bio_err," the random number generator\n"); BIO_printf(bio_err," -newkey rsa:bits generate a new RSA key of 'bits' in size\n"); |