Fix source where indent will not be able to cope
Reviewed-by: Tim Hudson <tjh@openssl.org>
diff --git a/apps/ciphers.c b/apps/ciphers.c
index 0018360..35cf4f6 100644
--- a/apps/ciphers.c
+++ b/apps/ciphers.c
@@ -203,9 +203,15 @@
int id3 = (int)(id & 0xffL);
if ((id & 0xff000000L) == 0x03000000L)
- BIO_printf(STDout, " 0x%02X,0x%02X - ", id2, id3); /* SSL3 cipher */
+ {
+ /* SSL3 cipher */
+ BIO_printf(STDout, " 0x%02X,0x%02X - ", id2, id3);
+ }
else
- BIO_printf(STDout, "0x%02X,0x%02X,0x%02X,0x%02X - ", id0, id1, id2, id3); /* whatever */
+ {
+ /* whatever */
+ BIO_printf(STDout, "0x%02X,0x%02X,0x%02X,0x%02X - ", id0, id1, id2, id3);
+ }
}
#ifndef OPENSSL_NO_SSL_TRACE
if (stdname)
diff --git a/apps/s_client.c b/apps/s_client.c
index 39c58c2..11d3feb 100644
--- a/apps/s_client.c
+++ b/apps/s_client.c
@@ -177,7 +177,8 @@
/*#define SSL_HOST_NAME "193.118.187.102" */
#define SSL_HOST_NAME "localhost"
-/*#define TEST_CERT "client.pem" */ /* no default cert. */
+/* no default cert. */
+/*#define TEST_CERT "client.pem" */
#undef BUFSIZZ
#define BUFSIZZ 1024*8
diff --git a/apps/s_time.c b/apps/s_time.c
index 8752649..df7dfdc 100644
--- a/apps/s_time.c
+++ b/apps/s_time.c
@@ -90,7 +90,8 @@
#define SSL_CONNECT_NAME "localhost:4433"
-/*#define TEST_CERT "client.pem" */ /* no default cert. */
+/* no default cert. */
+/*#define TEST_CERT "client.pem" */
#undef BUFSIZZ
#define BUFSIZZ 1024*10