]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
Extra quoting
authorArran Cudbard-Bell <a.cudbardb@freeradius.org>
Fri, 8 Oct 2021 21:41:17 +0000 (16:41 -0500)
committerArran Cudbard-Bell <a.cudbardb@freeradius.org>
Fri, 8 Oct 2021 21:41:17 +0000 (16:41 -0500)
src/lib/tls/pairs.c

index 6d4da312914452693ab1a1976d71a5f4ba27fa67..efa8c948d09b2891fa344ec3dc125d616cb4543a 100644 (file)
@@ -300,7 +300,7 @@ skip_alt:
                        fr_dbuff_set(in, fr_dbuff_current(in) - 1);     /* Ensure the \0 isn't counted in remaining */
 
                        if (!da) {
-                               RWDEBUG3("Skipping attribute %pV: "
+                               RWDEBUG3("Skipping attribute \"%pV\": "
                                         "Add a dictionary definition if you want to access it",
                                         fr_box_strvalue_len((char *)fr_dbuff_current(out),
                                                             fr_dbuff_remaining(out)));
@@ -315,7 +315,7 @@ skip_alt:
                        MEM(vp = fr_pair_afrom_da(ctx, da));
                        if (fr_pair_value_from_str(vp, (char *)fr_dbuff_current(out), fr_dbuff_remaining(out),
                                                   '\0', true) < 0) {
-                               RPWDEBUG3("Skipping: %s += '%pV'",
+                               RPWDEBUG3("Skipping: %s += \"%pV\"",
                                          da->name, fr_box_strvalue_len((char *)fr_dbuff_current(out),
                                                                        fr_dbuff_remaining(out)));
                                talloc_free(vp);