From: Arran Cudbard-Bell Date: Mon, 25 Oct 2021 18:15:44 +0000 (-0400) Subject: Fix some capitalisation X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=556fd27877ace90a61b041151da4a0f577bb857b;p=thirdparty%2Ffreeradius-server.git Fix some capitalisation --- diff --git a/src/lib/util/dict_tokenize.c b/src/lib/util/dict_tokenize.c index 1535a06add2..e0180cf4c3b 100644 --- a/src/lib/util/dict_tokenize.c +++ b/src/lib/util/dict_tokenize.c @@ -28,6 +28,7 @@ RCSID("$Id$") #include #include #include +#include #include @@ -806,7 +807,7 @@ static int dict_read_process_attribute(dict_tokenize_ctx_t *ctx, char **argv, in */ if (!vendor && (attr < 256) && !strstr(fn, "rfc") && !strstr(fn, "illegal")) { - fprintf(stderr, "WARNING: Illegal Attribute %s in %s\n", + fprintf(stderr, "WARNING: Illegal attribute %s in %s\n", argv[0], fn); } #endif @@ -1303,7 +1304,7 @@ static int dict_read_process_value(dict_tokenize_ctx_t *ctx, char **argv, int ar case FR_TYPE_STRUCTURAL: case FR_TYPE_NULL: case FR_TYPE_MAX: - fr_strerror_printf_push("Cannot define VALUE for Attribute '%s' of data type \"%s\"", da->name, + fr_strerror_printf_push("Cannot define VALUE for attribute '%s' of data type '%s'", da->name, fr_table_str_by_value(fr_value_box_type_table, da->type, "")); return -1;