From 2c822e210b3f9f0ebd4ee94ecaa6111da185ec5c Mon Sep 17 00:00:00 2001 From: dongresource Date: Sat, 12 Oct 2024 15:15:36 +0200 Subject: [PATCH] [bcrypt] Fix missing include on Windows Co-authored-by: Jade Shrinemaiden --- vendor/bcrypt/bcrypt.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/vendor/bcrypt/bcrypt.c b/vendor/bcrypt/bcrypt.c index 0223587..a49e295 100644 --- a/vendor/bcrypt/bcrypt.c +++ b/vendor/bcrypt/bcrypt.c @@ -38,9 +38,10 @@ typedef __int64 ssize_t; #include /* CryptAcquireContext, CryptGenRandom */ #else #include "bcrypt.h" -#include "ow-crypt.h" #endif +#include "ow-crypt.h" + #define RANDBYTES (16) static int try_close(int fd)