summaryrefslogtreecommitdiff
path: root/apps/cmp.c
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2022-10-03 07:22:52 +0200
committerRichard Levitte <levitte@openssl.org>2022-10-06 08:01:09 +0200
commit5139dec255d0e2f991083cba9d9c62dbe6637046 (patch)
tree200e588ef77b7f2f698a1dfdaaf41c7232becbfd /apps/cmp.c
parent82d28c6b3cbd8074faaa34cc2ce57dacc580792f (diff)
downloadopenssl-new-5139dec255d0e2f991083cba9d9c62dbe6637046.tar.gz
Rename ossl_sleep calls to OSSL_sleep everywhere
Also, remove inclusions of internal/e_os.h where it seems no longer necessary. Reviewed-by: Paul Dale <pauli@openssl.org> Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Tim Hudson <tjh@openssl.org> Reviewed-by: Dmitry Belyavskiy <beldmit@gmail.com> (Merged from https://github.com/openssl/openssl/pull/19330)
Diffstat (limited to 'apps/cmp.c')
-rw-r--r--apps/cmp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/cmp.c b/apps/cmp.c
index bac54f1265..24672144fe 100644
--- a/apps/cmp.c
+++ b/apps/cmp.c
@@ -2688,7 +2688,7 @@ static int cmp_server(OSSL_CMP_CTX *srv_cmp_ctx)
prog, 0, 0);
if (ret == 0) { /* no request yet */
if (retry) {
- ossl_sleep(1000);
+ OSSL_sleep(1000);
retry = 0;
continue;
}