Fix error message
authorAlan T. DeKok <aland@freeradius.org>
Thu, 9 Apr 2015 14:20:30 +0000 (10:20 -0400)
committerAlan T. DeKok <aland@freeradius.org>
Thu, 9 Apr 2015 14:20:30 +0000 (10:20 -0400)
src/main/tls.c

index 36fc245..205ac66 100644 (file)
@@ -1902,8 +1902,9 @@ int cbtls_verify(int ok, X509_STORE_CTX *ctx)
 
                        vp = pairmake(talloc_ctx, certs, attribute, value, T_OP_ADD);
                        if (!vp) {
-                               RDEBUG3("Skipping %s += '%s'.  Define %s in the server dictionary "
-                                       "if you require this attribute", attribute, value, attribute);
+                               RDEBUG3("Skipping %s += '%s'.  Please check that both the "
+                                       "attribute and value are defined in the dictionaries",
+                                       attribute, value);
                        } else {
                                rdebug_pair_list(L_DBG_LVL_2, request, vp, NULL);
                        }