summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@redhat.com>2015-11-12 11:10:08 +0100
committerNikos Mavrogiannopoulos <nmav@redhat.com>2015-11-12 12:04:45 +0100
commit862cec73663ef0a5c588702345b79ccc897ed5ae (patch)
tree5220c05391bc79df8a9fb695de7950b6c936b3a9
parent9b43ac82f062ecb242bc3e8714351a10b871cbd8 (diff)
downloadgnutls-862cec73663ef0a5c588702345b79ccc897ed5ae.tar.gz
properly indent unique IDs
-rw-r--r--lib/x509/output.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/x509/output.c b/lib/x509/output.c
index e82fe8467f..b126c309be 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");