summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2015-01-19 12:42:01 +0000
committerMatt Caswell <matt@openssl.org>2015-01-22 09:20:06 +0000
commite636e2acd753fb68f587c9fac2f381ad8c153528 (patch)
tree356224f7a2b351eeba71d2d44121a24fb072397b /apps
parent28470b6095aa1f098860ffdf226f32e4c4cd334f (diff)
Fix source where indent will not be able to cope
Reviewed-by: Tim Hudson <tjh@openssl.org>
Diffstat (limited to 'apps')
-rw-r--r--apps/ciphers.c10
-rw-r--r--apps/s_client.c3
-rw-r--r--apps/s_time.c3
3 files changed, 12 insertions, 4 deletions
diff --git a/apps/ciphers.c b/apps/ciphers.c
index 0018360018..35cf4f6199 100644
--- a/apps/ciphers.c
+++ b/apps/ciphers.c
@@ -203,9 +203,15 @@ int MAIN(int argc, char **argv)
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 39c58c2702..11d3feb02c 100644
--- a/apps/s_client.c
+++ b/apps/s_client.c
@@ -177,7 +177,8 @@ typedef unsigned int u_int;
/*#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 8752649fc4..df7dfdc9f3 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