diff --git a/npa/src/sslutil.c b/npa/src/sslutil.c
index a3ed1c8..6b7bab5 100644
--- a/npa/src/sslutil.c
+++ b/npa/src/sslutil.c
@@ -16,15 +16,3 @@
* You should have received a copy of the GNU General Public License along with
* ccid. If not, see .
*/
-#include "sslutil.h"
-#include
-#include
-
-void ssl_error(sc_context_t *ctx) {
- unsigned long r;
- ERR_load_crypto_strings();
- for (r = ERR_get_error(); r; r = ERR_get_error()) {
- sc_debug(ctx, SC_LOG_DEBUG_VERBOSE, ERR_error_string(r, NULL));
- }
- ERR_free_strings();
-}