summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2009-02-15 15:46:46 +0000
committerDr. Stephen Henson <steve@openssl.org>2009-02-15 15:46:46 +0000
commit1b787fc04c34f61f74865316d4459eba35608b58 (patch)
tree98331f1be67e98460aaecb4b0a6f3736907185ef /apps
parent9a6401acdf50a5c7948ced371d20d47dc4ea1226 (diff)
Include common warning options in 0.9.8, fix warnings in debug-steve64.
Diffstat (limited to 'apps')
-rw-r--r--apps/engine.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/engine.c b/apps/engine.c
index 1d0dd9bfbc..17bd81fb79 100644
--- a/apps/engine.c
+++ b/apps/engine.c
@@ -252,7 +252,7 @@ static int util_verbose(ENGINE *e, int verbose, BIO *bio_out, const char *indent
/* Now decide on the output */
if(xpos == 0)
/* Do an indent */
- xpos = BIO_printf(bio_out, indent);
+ xpos = BIO_puts(bio_out, indent);
else
/* Otherwise prepend a ", " */
xpos += BIO_printf(bio_out, ", ");
@@ -263,7 +263,7 @@ static int util_verbose(ENGINE *e, int verbose, BIO *bio_out, const char *indent
(xpos + (int)strlen(name) > line_wrap))
{
BIO_printf(bio_out, "\n");
- xpos = BIO_printf(bio_out, indent);
+ xpos = BIO_puts(bio_out, indent);
}
xpos += BIO_printf(bio_out, "%s", name);
}