summaryrefslogtreecommitdiffstats
path: root/crypto/cmp
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 /crypto/cmp
parent82d28c6b3cbd8074faaa34cc2ce57dacc580792f (diff)
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 'crypto/cmp')
-rw-r--r--crypto/cmp/cmp_client.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/crypto/cmp/cmp_client.c b/crypto/cmp/cmp_client.c
index ec20af3aa1..26635db850 100644
--- a/crypto/cmp/cmp_client.c
+++ b/crypto/cmp/cmp_client.c
@@ -11,7 +11,6 @@
#include "cmp_local.h"
#include "internal/cryptlib.h"
-#include "internal/e_os.h" /* ossl_sleep() */
/* explicit #includes not strictly needed since implied by the above: */
#include <openssl/bio.h>
@@ -332,7 +331,7 @@ static int poll_for_response(OSSL_CMP_CTX *ctx, int sleep, int rid,
OSSL_CMP_MSG_free(prep);
prep = NULL;
if (sleep) {
- ossl_sleep((unsigned long)(1000 * check_after));
+ OSSL_sleep((unsigned long)(1000 * check_after));
} else {
if (checkAfter != NULL)
*checkAfter = (int)check_after;