$OpenBSD: patch-src_wfuzz___init___py,v 1.1.1.1 2020/12/02 11:55:14 sebastia Exp $

suppress warning on each startup of wfuzz

Index: src/wfuzz/__init__.py
--- src/wfuzz/__init__.py.orig
+++ src/wfuzz/__init__.py
@@ -30,7 +30,7 @@ warnings.formatwarning = warning_on_one_line
 try:
     import pycurl
 
-    if "openssl".lower() not in pycurl.version.lower():
+    if "libressl".lower() not in pycurl.version.lower():
         warnings.warn(
             "Pycurl is not compiled against Openssl. Wfuzz might not work correctly when fuzzing SSL sites. Check Wfuzz's documentation for more information."
         )
