]> git.ipfire.org Git - thirdparty/gnutls.git/commitdiff
properly indent unique IDs
authorNikos Mavrogiannopoulos <nmav@redhat.com>
Thu, 12 Nov 2015 10:10:08 +0000 (11:10 +0100)
committerNikos Mavrogiannopoulos <nmav@redhat.com>
Thu, 12 Nov 2015 10:10:43 +0000 (11:10 +0100)
lib/x509/output.c

index 8602eaa74792f031efb3040ad359dcfccf9b8521..633d3ee1af935b41564aab48b4796b272fb45e94 100644 (file)
@@ -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");