From: Nikos Mavrogiannopoulos Date: Thu, 12 Nov 2015 10:10:08 +0000 (+0100) Subject: properly indent unique IDs X-Git-Tag: gnutls_3_5_0~573 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c3f9880e34896741cabfca55c2df5659b84c748e;p=thirdparty%2Fgnutls.git properly indent unique IDs --- diff --git a/lib/x509/output.c b/lib/x509/output.c index 8602eaa747..633d3ee1af 100644 --- a/lib/x509/output.c +++ b/lib/x509/output.c @@ -674,7 +674,7 @@ print_unique_ids(gnutls_buffer_st * str, const gnutls_x509_crt_t cert) result = gnutls_x509_crt_get_issuer_unique_id(cert, buf, &buf_size); if (result >= 0) { - addf(str, ("\t\tIssuer Unique ID:\n")); + addf(str, ("\tIssuer Unique ID:\n")); _gnutls_buffer_hexdump(str, buf, buf_size, "\t\t\t"); if (buf_size == 16) { /* this could be a GUID */ guiddump(str, buf, buf_size, "\t\t\t"); @@ -685,7 +685,7 @@ print_unique_ids(gnutls_buffer_st * str, const gnutls_x509_crt_t cert) result = gnutls_x509_crt_get_subject_unique_id(cert, buf, &buf_size); if (result >= 0) { - addf(str, ("\t\tSubject Unique ID:\n")); + addf(str, ("\tSubject Unique ID:\n")); _gnutls_buffer_hexdump(str, buf, buf_size, "\t\t\t"); if (buf_size == 16) { /* this could be a GUID */ guiddump(str, buf, buf_size, "\t\t\t");