]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
quote data type, to be clear that it's a data type
authorAlan T. DeKok <aland@freeradius.org>
Mon, 4 Jul 2022 22:02:14 +0000 (18:02 -0400)
committerAlan T. DeKok <aland@freeradius.org>
Mon, 4 Jul 2022 22:19:39 +0000 (18:19 -0400)
src/lib/unlang/xlat_builtin.c

index 544add4dfc8f44de19cda8ecb4f5d211f773aae9..6d7bc79ba3a5db61067802b9b27e772c4956d7f7 100644 (file)
@@ -2104,7 +2104,7 @@ static xlat_action_t xlat_func_cast(UNUSED TALLOC_CTX *ctx, fr_dcursor_t *out,
                        p = fr_dlist_remove(&arg->vb_group, vb);
 
                        if (fr_value_box_cast_in_place(vb, vb, type, NULL) < 0) {
-                               RPEDEBUG("Failed casting %pV to data type %s", vb, fr_type_to_str(type));
+                               RPEDEBUG("Failed casting %pV to data type '%s'", vb, fr_type_to_str(type));
                                return XLAT_ACTION_FAIL;
                        }
                        fr_dcursor_append(out, vb);