summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorUlf Möller <ulf@openssl.org>2001-02-06 02:57:35 +0000
committerUlf Möller <ulf@openssl.org>2001-02-06 02:57:35 +0000
commit4327aae816f6c147782b5a011c7f899558629c27 (patch)
treed71b0c4927df33dcfe16d40ff525b853a7833498 /apps
parent741a9690df52b947861deeafec87ab86074c0929 (diff)
format strings
Diffstat (limited to 'apps')
-rw-r--r--apps/ca.c2
-rw-r--r--apps/ciphers.c2
-rw-r--r--apps/crl.c2
-rw-r--r--apps/sess_id.c2
-rw-r--r--apps/x509.c2
5 files changed, 5 insertions, 5 deletions
diff --git a/apps/ca.c b/apps/ca.c
index 9c7bac39f0..567ef4777c 100644
--- a/apps/ca.c
+++ b/apps/ca.c
@@ -479,7 +479,7 @@ bad:
if (badops)
{
for (pp=ca_usage; (*pp != NULL); pp++)
- BIO_printf(bio_err,*pp);
+ BIO_printf(bio_err,"%s",*pp);
goto err;
}
diff --git a/apps/ciphers.c b/apps/ciphers.c
index b6e2f966d8..6be76716a8 100644
--- a/apps/ciphers.c
+++ b/apps/ciphers.c
@@ -150,7 +150,7 @@ int MAIN(int argc, char **argv)
if (badops)
{
for (pp=ciphers_usage; (*pp != NULL); pp++)
- BIO_printf(bio_err,*pp);
+ BIO_printf(bio_err,"%s",*pp);
goto end;
}
diff --git a/apps/crl.c b/apps/crl.c
index 3b5725f23f..666a8576fb 100644
--- a/apps/crl.c
+++ b/apps/crl.c
@@ -214,7 +214,7 @@ int MAIN(int argc, char **argv)
{
bad:
for (pp=crl_usage; (*pp != NULL); pp++)
- BIO_printf(bio_err,*pp);
+ BIO_printf(bio_err,"%s",*pp);
goto end;
}
diff --git a/apps/sess_id.c b/apps/sess_id.c
index 60cc3f1e49..eb40aa6353 100644
--- a/apps/sess_id.c
+++ b/apps/sess_id.c
@@ -156,7 +156,7 @@ int MAIN(int argc, char **argv)
{
bad:
for (pp=sess_id_usage; (*pp != NULL); pp++)
- BIO_printf(bio_err,*pp);
+ BIO_printf(bio_err,"%s",*pp);
goto end;
}
diff --git a/apps/x509.c b/apps/x509.c
index 9422e1d15c..af3843b1f8 100644
--- a/apps/x509.c
+++ b/apps/x509.c
@@ -435,7 +435,7 @@ int MAIN(int argc, char **argv)
{
bad:
for (pp=x509_usage; (*pp != NULL); pp++)
- BIO_printf(bio_err,*pp);
+ BIO_printf(bio_err,"%s",*pp);
goto end;
}