=== modified file 'mandos' --- mandos 2016-08-25 17:37:05 +0000 +++ mandos 2016-08-26 18:44:21 +0000 @@ -507,8 +507,11 @@ """This isn't so much a class as it is a module-like namespace. It is instantiated once, and simulates having a GnuTLS module.""" - _library = ctypes.cdll.LoadLibrary( - ctypes.util.find_library("gnutls")) + library = ctypes.util.find_library("gnutls") + if library is None: + library = ctypes.util.find_library("gnutls-deb0") + _library = ctypes.cdll.LoadLibrary(library) + del library _need_version = b"3.3.0" def __init__(self):