summaryrefslogtreecommitdiff
path: root/lib/x509/dn.c
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@redhat.com>2017-08-15 10:47:11 +0200
committerNikos Mavrogiannopoulos <nmav@redhat.com>2017-08-15 10:52:33 +0200
commitcaeac0335e274db18e802a3f2fe0d49bf4dee0b4 (patch)
tree3fb8358b94a6513749fe0fb721f2bf40f8a82d9d /lib/x509/dn.c
parentb2d0c85608ead3c86847509d2eb695ae10edb5fe (diff)
downloadgnutls-caeac0335e274db18e802a3f2fe0d49bf4dee0b4.tar.gz
reduce common asserts to assist in debugging the library
Signed-off-by: Nikos Mavrogiannopoulos <nmav@redhat.com>
Diffstat (limited to 'lib/x509/dn.c')
-rw-r--r--lib/x509/dn.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/x509/dn.c b/lib/x509/dn.c
index 04ae1825b2..07b9d94b6b 100644
--- a/lib/x509/dn.c
+++ b/lib/x509/dn.c
@@ -982,7 +982,6 @@ _gnutls_x509_compare_raw_dn(const gnutls_datum_t * dn1,
{
if (dn1->size != dn2->size) {
- gnutls_assert();
return 0;
}
if (memcmp(dn1->data, dn2->data, dn2->size) != 0) {