summaryrefslogtreecommitdiff
path: root/regress/lib/libcrypto/free/freenull.awk
diff options
context:
space:
mode:
Diffstat (limited to 'regress/lib/libcrypto/free/freenull.awk')
-rw-r--r--regress/lib/libcrypto/free/freenull.awk9
1 files changed, 1 insertions, 8 deletions
diff --git a/regress/lib/libcrypto/free/freenull.awk b/regress/lib/libcrypto/free/freenull.awk
index 618034cc706..3a10d99ebb9 100644
--- a/regress/lib/libcrypto/free/freenull.awk
+++ b/regress/lib/libcrypto/free/freenull.awk
@@ -1,4 +1,4 @@
-# $OpenBSD: freenull.awk,v 1.3 2023/07/28 18:29:26 tb Exp $
+# $OpenBSD: freenull.awk,v 1.4 2023/11/19 13:11:06 tb Exp $
# Copyright (c) 2018 Theo Buehler <tb@openbsd.org>
#
# Permission to use, copy, modify, and distribute this software for any
@@ -42,13 +42,6 @@
next
}
-/^ENGINE_free$/ {
- printf("#ifndef OPENSSL_NO_ENGINE\n")
- printf("\tENGINE_free(NULL);\n")
- printf("#endif\n")
- next
-}
-
/_free$/ {
printf("\t%s(NULL);\n", $0)
}