From: Nick Porter Date: Thu, 13 Jul 2023 15:48:02 +0000 (+0100) Subject: rlm_files are not just keyed off user names X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c7c231e9db17c28989abb17e3594a865f44f4c95;p=thirdparty%2Ffreeradius-server.git rlm_files are not just keyed off user names --- diff --git a/src/lib/server/users_file.c b/src/lib/server/users_file.c index 5fa108a7dae..53d200dae54 100644 --- a/src/lib/server/users_file.c +++ b/src/lib/server/users_file.c @@ -315,12 +315,12 @@ int pairlist_read(TALLOC_CTX *ctx, fr_dict_t const *dict, char const *file, PAIR } /* - * We're trying to read a name. It MUST have + * We're trying to read a key value. It MUST have * been at the start of the line. So whatever * this is, it's wrong. */ if (leading_spaces) { - ERROR_MARKER(&sbuff, "Entry does not begin with a user name"); + ERROR_MARKER(&sbuff, "Entry does not begin with a key value"); fail: fclose(fp); return -1;