From: Alan T. DeKok Date: Mon, 4 Jul 2022 22:02:14 +0000 (-0400) Subject: quote data type, to be clear that it's a data type X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=523aa10d3c13ab8708f5bd8b1f2cd2ec77dedf61;p=thirdparty%2Ffreeradius-server.git quote data type, to be clear that it's a data type --- diff --git a/src/lib/unlang/xlat_builtin.c b/src/lib/unlang/xlat_builtin.c index 544add4dfc8..6d7bc79ba3a 100644 --- a/src/lib/unlang/xlat_builtin.c +++ b/src/lib/unlang/xlat_builtin.c @@ -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);