summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsthen <>2014-04-17 21:04:32 +0000
committersthen <>2014-04-17 21:04:32 +0000
commitf7422b60fbfd0a5881e0d15bfedc4ad749763bf4 (patch)
tree8c1f853f3b664a9ba0ec3e256babe274f435953a
parentdea2616f54bc531ab8af0d74ac00fd23f61ba61d (diff)
downloadopenbsd-f7422b60fbfd0a5881e0d15bfedc4ad749763bf4.tar.gz
openbsd-f7422b60fbfd0a5881e0d15bfedc4ad749763bf4.tar.bz2
openbsd-f7422b60fbfd0a5881e0d15bfedc4ad749763bf4.zip
since we're replacing LIST_SEPARATOR_CHAR with ':', no point using %c
in the help printf
-rw-r--r--src/lib/libssl/src/apps/req.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/libssl/src/apps/req.c b/src/lib/libssl/src/apps/req.c
index 22302c5c30..527b893a28 100644
--- a/src/lib/libssl/src/apps/req.c
+++ b/src/lib/libssl/src/apps/req.c
@@ -422,7 +422,7 @@ bad:
422 BIO_printf(bio_err," -key file use the private key contained in file\n"); 422 BIO_printf(bio_err," -key file use the private key contained in file\n");
423 BIO_printf(bio_err," -keyform arg key file format\n"); 423 BIO_printf(bio_err," -keyform arg key file format\n");
424 BIO_printf(bio_err," -keyout arg file to send the key to\n"); 424 BIO_printf(bio_err," -keyout arg file to send the key to\n");
425 BIO_printf(bio_err," -rand file%cfile%c...\n", ':', ':'); 425 BIO_printf(bio_err," -rand file:file:...\n");
426 BIO_printf(bio_err," load the file (or the files in the directory) into\n"); 426 BIO_printf(bio_err," load the file (or the files in the directory) into\n");
427 BIO_printf(bio_err," the random number generator\n"); 427 BIO_printf(bio_err," the random number generator\n");
428 BIO_printf(bio_err," -newkey rsa:bits generate a new RSA key of 'bits' in size\n"); 428 BIO_printf(bio_err," -newkey rsa:bits generate a new RSA key of 'bits' in size\n");