summaryrefslogtreecommitdiffstats
path: root/test/cmp_msg_test.c
diff options
context:
space:
mode:
authorDr. David von Oheimb <David.von.Oheimb@siemens.com>2019-12-13 20:07:08 +0100
committerDr. David von Oheimb <David.von.Oheimb@siemens.com>2020-02-17 07:43:58 +0100
commit235595c402bd7815f07f1f3f3babe9fcc247a206 (patch)
treeb4fd2cf01de36a6988d1eceadf8f51e6238b5a1c /test/cmp_msg_test.c
parentebf3006917e0e968af4a5d5c2c6379c5b866f801 (diff)
fix various formatting nits in CMP contribution chunks 1-6 found by the new util/check-format.pl
in addition: correct wording in doc, comments, and parameter names: self-signed -> self-issued where appropriate Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Bernd Edlinger <bernd.edlinger@hotmail.de> (Merged from https://github.com/openssl/openssl/pull/10620)
Diffstat (limited to 'test/cmp_msg_test.c')
-rw-r--r--test/cmp_msg_test.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/test/cmp_msg_test.c b/test/cmp_msg_test.c
index 7fa0619284..8f95865869 100644
--- a/test/cmp_msg_test.c
+++ b/test/cmp_msg_test.c
@@ -122,7 +122,7 @@ static int execute_pkimessage_create_test(CMP_MSG_TEST_FIXTURE *fixture)
(fixture->cmp_ctx, fixture->bodytype));
}
-static int set1_newPkey(OSSL_CMP_CTX *ctx, EVP_PKEY* pkey)
+static int set1_newPkey(OSSL_CMP_CTX *ctx, EVP_PKEY *pkey)
{
if (!EVP_PKEY_up_ref(pkey))
return 0;
@@ -321,7 +321,7 @@ static int test_cmp_create_error_msg(void)
OSSL_CMP_PKIFAILUREINFO_systemFailure,
NULL);
fixture->err_code = -1;
- fixture->expected = 1; /* Expected: Message creation is successful */
+ fixture->expected = 1; /* expected: message creation is successful */
if (!TEST_true(set1_newPkey(fixture->cmp_ctx, newkey))) {
tear_down(fixture);
fixture = NULL;
@@ -430,7 +430,7 @@ static int execute_rp_create(CMP_MSG_TEST_FIXTURE *fixture)
goto err;
if (!X509_NAME_add_entry_by_txt(issuer, "CN", MBSTRING_ASC,
- (unsigned char*)"The Issuer", -1, -1, 0)
+ (unsigned char *)"The Issuer", -1, -1, 0)
|| !ASN1_INTEGER_set(serial, 99)
|| (cid = OSSL_CRMF_CERTID_gen(issuer, serial)) == NULL
|| (rpmsg = ossl_cmp_rp_new(fixture->cmp_ctx, si, cid, 1)) == NULL)
@@ -439,8 +439,8 @@ static int execute_rp_create(CMP_MSG_TEST_FIXTURE *fixture)
if (!TEST_ptr(ossl_cmp_revrepcontent_get_CertId(rpmsg->body->value.rp, 0)))
goto err;
- if (!TEST_ptr(ossl_cmp_revrepcontent_get_pkistatusinfo(rpmsg->body->value.rp,
- 0)))
+ if (!TEST_ptr(ossl_cmp_revrepcontent_get_pkistatusinfo(rpmsg->body->
+ value.rp, 0)))
goto err;
res = 1;
@@ -468,11 +468,11 @@ static int execute_pollrep_create(CMP_MSG_TEST_FIXTURE *fixture)
pollrep = ossl_cmp_pollRep_new(fixture->cmp_ctx, 77, 2000);
if (!TEST_ptr(pollrep))
return 0;
- if (!TEST_ptr(ossl_cmp_pollrepcontent_get0_pollrep(
- pollrep->body->value.pollRep, 77)))
+ if (!TEST_ptr(ossl_cmp_pollrepcontent_get0_pollrep(pollrep->body->
+ value.pollRep, 77)))
goto err;
- if (!TEST_ptr_null(ossl_cmp_pollrepcontent_get0_pollrep(
- pollrep->body->value.pollRep, 88)))
+ if (!TEST_ptr_null(ossl_cmp_pollrepcontent_get0_pollrep(pollrep->body->
+ value.pollRep, 88)))
goto err;
res = 1;