From: Arran Cudbard-Bell Date: Mon, 14 Oct 2024 01:36:07 +0000 (-0400) Subject: Minor error message fixes X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ea13e6b6b6497229341a6fb52114dd1c6219f5da;p=thirdparty%2Ffreeradius-server.git Minor error message fixes --- diff --git a/src/lib/util/dict_fixup.c b/src/lib/util/dict_fixup.c index 0e0c66ff320..7c97ae970e7 100644 --- a/src/lib/util/dict_fixup.c +++ b/src/lib/util/dict_fixup.c @@ -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; }