From: Alan T. DeKok Date: Fri, 31 May 2019 16:52:28 +0000 (-0400) Subject: clarify error message X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=779c8af34cefb8a20a56a2d3ccd29dc4b10cbc76;p=thirdparty%2Ffreeradius-server.git clarify error message --- diff --git a/src/lib/server/cf_file.c b/src/lib/server/cf_file.c index 8c33475bcd0..416c1e90b14 100644 --- a/src/lib/server/cf_file.c +++ b/src/lib/server/cf_file.c @@ -124,8 +124,8 @@ char const *cf_expand_variables(char const *cf, int *lineno, end = strchr(ptr, '}'); if (end == NULL) { *p = '\0'; - INFO("%s[%d]: Variable expansion missing }", - cf, *lineno); + INFO("%s[%d]: Variable expansion '%s' missing '}'", + cf, *lineno, input); return NULL; }