]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
Minor error message fixes
authorArran Cudbard-Bell <a.cudbardb@freeradius.org>
Mon, 14 Oct 2024 01:36:07 +0000 (21:36 -0400)
committerArran Cudbard-Bell <a.cudbardb@freeradius.org>
Mon, 14 Oct 2024 01:49:16 +0000 (21:49 -0400)
src/lib/util/dict_fixup.c

index 0e0c66ff320f39166b54b65eafe6f4c25d001e96..7c97ae970e70a8f1bd632aa0f5694b6a668d3288 100644 (file)
@@ -443,7 +443,7 @@ static inline CC_HINT(always_inline) int dict_fixup_clone_apply(UNUSED dict_fixu
                         *      @todo - allow references to other protocols.
                         */
                        if (root->flags.is_root) {
-                               fr_strerror_printf("Too many '.' in clone=%s at %s[%d]",
+                               fr_strerror_printf("Too many '.' in 'clone=%s' at %s[%d]",
                                                   fixup->ref, fr_cwd_strip(fixup->common.filename), fixup->common.line);
                                return -1;
                        }
@@ -460,7 +460,7 @@ static inline CC_HINT(always_inline) int dict_fixup_clone_apply(UNUSED dict_fixu
         */
        da = fr_dict_attr_by_oid(NULL, root, ref);
        if (!da) {
-               fr_strerror_printf("Unknown attribute reference in clone=%s at parent %s %s[%d]",
+               fr_strerror_printf("Unknown attribute reference 'clone=%s' at parent %s %s[%d]",
                                   fixup->ref, root->name, fr_cwd_strip(fixup->common.filename), fixup->common.line);
                return -1;
        }