summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2015-01-05 00:34:00 +0000
committerMatt Caswell <matt@openssl.org>2015-01-06 15:45:25 +0000
commit3a83462dfea67566ba9bcedee266dc93d2e911e2 (patch)
tree34d2b020e0b50be348500f4106fe514840ae30f3 /apps
parentb691154e18c0367643696db3cf73debe9ddfa9ae (diff)
Further comment amendments to preserve formatting prior to source reformat
Reviewed-by: Tim Hudson <tjh@openssl.org>
Diffstat (limited to 'apps')
-rw-r--r--apps/apps.c3
-rw-r--r--apps/ca.c2
-rw-r--r--apps/pkcs7.c3
-rw-r--r--apps/req.c2
-rw-r--r--apps/s_cb.c2
5 files changed, 7 insertions, 5 deletions
diff --git a/apps/apps.c b/apps/apps.c
index 4eb322afbb..80762c1cc0 100644
--- a/apps/apps.c
+++ b/apps/apps.c
@@ -2917,7 +2917,8 @@ void jpake_server_auth(BIO *out, BIO *conn, const char *secret)
#endif
#ifndef OPENSSL_NO_TLSEXT
-/* next_protos_parse parses a comma separated list of strings into a string
+/*-
+ * next_protos_parse parses a comma separated list of strings into a string
* in a format suitable for passing to SSL_CTX_set_next_protos_advertised.
* outlen: (output) set to the length of the resulting buffer on success.
* err: (maybe NULL) on failure, an error message line is written to this BIO.
diff --git a/apps/ca.c b/apps/ca.c
index 6e8fa273db..1778f953d9 100644
--- a/apps/ca.c
+++ b/apps/ca.c
@@ -655,7 +655,7 @@ bad:
oid_bio=BIO_new_file(p,"r");
if (oid_bio == NULL)
{
- /*
+ /*-
BIO_printf(bio_err,"problems opening %s for extra oid's\n",p);
ERR_print_errors(bio_err);
*/
diff --git a/apps/pkcs7.c b/apps/pkcs7.c
index ae6cd33f73..01064617a2 100644
--- a/apps/pkcs7.c
+++ b/apps/pkcs7.c
@@ -71,7 +71,8 @@
#undef PROG
#define PROG pkcs7_main
-/* -inform arg - input format - default PEM (DER or PEM)
+/*-
+ * -inform arg - input format - default PEM (DER or PEM)
* -outform arg - output format - default PEM
* -in arg - input file - default stdin
* -out arg - output file - default stdout
diff --git a/apps/req.c b/apps/req.c
index cc1b631b03..686fac4f5d 100644
--- a/apps/req.c
+++ b/apps/req.c
@@ -506,7 +506,7 @@ bad:
oid_bio=BIO_new_file(p,"r");
if (oid_bio == NULL)
{
- /*
+ /*-
BIO_printf(bio_err,"problems opening %s for extra oid's\n",p);
ERR_print_errors(bio_err);
*/
diff --git a/apps/s_cb.c b/apps/s_cb.c
index 0a6d0ce3f5..7720144d59 100644
--- a/apps/s_cb.c
+++ b/apps/s_cb.c
@@ -230,7 +230,7 @@ int set_cert_stuff(SSL_CTX *ctx, char *cert_file, char *key_file)
return(0);
}
- /*
+ /*-
In theory this is no longer needed
ssl=SSL_new(ctx);
x509=SSL_get_certificate(ssl);