https://git.reactos.org/?p=reactos.git;a=commitdiff;h=6bf909d66a102b2d96951…
commit 6bf909d66a102b2d969511b507da928d5876b9c1
Author: Peter Meerwald-Stadler <pmeerw(a)pmeerw.net>
AuthorDate: Wed Oct 5 13:38:54 2022 +0200
Commit: Thomas Faber <thomas.faber(a)reactos.org>
CommitDate: Mon Oct 10 11:03:55 2022 -0400
[ZLIB] Restore 'uncrypt' functionality in minizip (using #ifdef REACTOS)
CORE-18339
---
sdk/lib/3rdparty/zlib/contrib/minizip/unzip.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/sdk/lib/3rdparty/zlib/contrib/minizip/unzip.c
b/sdk/lib/3rdparty/zlib/contrib/minizip/unzip.c
index c8159a2fb0c..8434ac91893 100644
--- a/sdk/lib/3rdparty/zlib/contrib/minizip/unzip.c
+++ b/sdk/lib/3rdparty/zlib/contrib/minizip/unzip.c
@@ -68,9 +68,11 @@
#include <stdlib.h>
#include <string.h>
+#ifndef __REACTOS__
#ifndef NOUNCRYPT
#define NOUNCRYPT
#endif
+#endif
#include "zlib.h"
#include "unzip.h"