]> git.ipfire.org Git - thirdparty/krb5.git/commitdiff
Fix incorrect TRACE usages to use {str}
authorRobbie Harwood <rharwood@redhat.com>
Thu, 27 Sep 2018 21:45:59 +0000 (17:45 -0400)
committerGreg Hudson <ghudson@mit.edu>
Tue, 30 Oct 2018 00:56:29 +0000 (20:56 -0400)
(cherry picked from commit 3023a7d253c3052897b3d77d2f7ce992ff93e913)

ticket: 8743
version_fixed: 1.15.4

src/plugins/preauth/pkinit/pkinit_trace.h

index b3f5cbb20e185da9e8b34b1a03455f2b47999686..ae224baf395b3dce60ed5fd7ba9930fd358378ec 100644 (file)
@@ -70,9 +70,9 @@
 #define TRACE_PKINIT_CLIENT_REQ_RSA(c)                  \
     TRACE(c, "PKINIT client making RSA request")
 #define TRACE_PKINIT_CLIENT_SAN_CONFIG_DNSNAME(c, host)                 \
-    TRACE(c, "PKINIT client config accepts KDC dNSName SAN {string}", host)
+    TRACE(c, "PKINIT client config accepts KDC dNSName SAN {str}", host)
 #define TRACE_PKINIT_CLIENT_SAN_MATCH_DNSNAME(c, host)                  \
-    TRACE(c, "PKINIT client matched KDC hostname {string} against "     \
+    TRACE(c, "PKINIT client matched KDC hostname {str} against "     \
           "dNSName SAN; EKU check still required", host)
 #define TRACE_PKINIT_CLIENT_SAN_MATCH_NONE(c)                           \
     TRACE(c, "PKINIT client found no acceptable SAN in KDC cert")
@@ -82,7 +82,7 @@
 #define TRACE_PKINIT_CLIENT_SAN_ERR(c)                          \
     TRACE(c, "PKINIT client failed to decode SANs in KDC cert")
 #define TRACE_PKINIT_CLIENT_SAN_KDCCERT_DNSNAME(c, host)                \
-    TRACE(c, "PKINIT client found dNSName SAN in KDC cert: {string}", host)
+    TRACE(c, "PKINIT client found dNSName SAN in KDC cert: {str}", host)
 #define TRACE_PKINIT_CLIENT_SAN_KDCCERT_PRINC(c, princ)                 \
     TRACE(c, "PKINIT client found id-pkinit-san in KDC cert: {princ}", princ)
 #define TRACE_PKINIT_CLIENT_TRYAGAIN(c)                                 \