diff -Naur ekg2-master.orig/plugins/jabber/jabber.c ekg2-master/plugins/jabber/jabber.c --- ekg2-master.orig/plugins/jabber/jabber.c 2016-04-19 19:08:06.000000000 +0200 +++ ekg2-master/plugins/jabber/jabber.c 2018-02-10 10:35:32.379723199 +0100 @@ -996,9 +996,7 @@ #ifdef HAVE_LIBGNUTLS gnutls_set_default_priority(j->ssl_session); - gnutls_certificate_type_set_priority(j->ssl_session, cert_type_priority); gnutls_credentials_set(j->ssl_session, GNUTLS_CRD_CERTIFICATE, j->xcred); - gnutls_compression_set_priority(j->ssl_session, comp_type_priority); /* we use read/write instead of recv/send */ gnutls_transport_set_pull_function(j->ssl_session, (gnutls_pull_func)read); diff -Naur ekg2-master.orig/remote/remote.c ekg2-master/remote/remote.c --- ekg2-master.orig/remote/remote.c 2016-04-19 19:08:06.000000000 +0200 +++ ekg2-master/remote/remote.c 2018-02-10 10:35:37.816482940 +0100 @@ -235,9 +235,7 @@ /* gnutls_record_set_max_size(ssl, 1024); */ /* XXX */ gnutls_set_default_priority(ssl); - gnutls_certificate_type_set_priority(ssl, cert_type_priority); gnutls_credentials_set(ssl, GNUTLS_CRD_CERTIFICATE, ssl_xcred); - gnutls_compression_set_priority(ssl, comp_type_priority); /* we use read/write instead of recv/send */ gnutls_transport_set_pull_function(ssl, (gnutls_pull_func) ekg_gnutls_read);