summaryrefslogtreecommitdiff
path: root/lib/x509/x509_dn.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/x509/x509_dn.c')
-rw-r--r--lib/x509/x509_dn.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/x509/x509_dn.c b/lib/x509/x509_dn.c
index f72dc3d758..31d83b69ee 100644
--- a/lib/x509/x509_dn.c
+++ b/lib/x509/x509_dn.c
@@ -90,7 +90,7 @@ const unsigned char* p = (void*)*ptr;
/* skip any space */
while (c_isspace(*p))
p++;
-
+
/* Read the name */
name->data = (void*)p;
while (*p != '=' && *p != 0 && !c_isspace(*p))
@@ -118,8 +118,6 @@ const unsigned char* p = (void*)*ptr;
if (val->size == 0 || name->size == 0)
return gnutls_assert_val(GNUTLS_E_PARSING_ERROR);
-fprintf(stderr, "name[%d]: %s\nval[%d]: %s\n",name->size, name->data, val->size, val->data);
-
*ptr = (void*)p;
return 0;