Conditionalise all debug strings.
diff --git a/apps/apps.c b/apps/apps.c
index 475e47e..bdd14dd 100644
--- a/apps/apps.c
+++ b/apps/apps.c
@@ -1709,7 +1709,9 @@
#else
j = BIO_snprintf(buf[0], sizeof buf[0], "%s-%s", dbfile, suffix);
#endif
+#ifdef RL_DEBUG
BIO_printf(bio_err, "DEBUG: writing \"%s\"\n", buf[0]);
+#endif
if (BIO_write_filename(out,buf[0]) <= 0)
{
perror(dbfile);
@@ -1722,7 +1724,9 @@
BIO_free(out);
out = BIO_new(BIO_s_file());
+#ifdef RL_DEBUG
BIO_printf(bio_err, "DEBUG: writing \"%s\"\n", buf[1]);
+#endif
if (BIO_write_filename(out,buf[1]) <= 0)
{
perror(buf[2]);
@@ -1796,8 +1800,10 @@
}
else
{
+#ifdef RL_DEBUG
BIO_printf(bio_err, "DEBUG: renaming \"%s\" to \"%s\"\n",
dbfile, buf[1]);
+#endif
if (rename(dbfile,buf[1]) < 0)
{
BIO_printf(bio_err,
@@ -1807,8 +1813,10 @@
goto err;
}
}
+#ifdef RL_DEBUG
BIO_printf(bio_err, "DEBUG: renaming \"%s\" to \"%s\"\n",
buf[0],dbfile);
+#endif
if (rename(buf[0],dbfile) < 0)
{
BIO_printf(bio_err,
@@ -1828,8 +1836,10 @@
}
else
{
+#ifdef RL_DEBUG
BIO_printf(bio_err, "DEBUG: renaming \"%s\" to \"%s\"\n",
buf[4],buf[3]);
+#endif
if (rename(buf[4],buf[3]) < 0)
{
BIO_printf(bio_err,
@@ -1841,8 +1851,10 @@
goto err;
}
}
+#ifdef RL_DEBUG
BIO_printf(bio_err, "DEBUG: renaming \"%s\" to \"%s\"\n",
buf[2],buf[4]);
+#endif
if (rename(buf[2],buf[4]) < 0)
{
BIO_printf(bio_err,