]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
clarify error message
authorAlan T. DeKok <aland@freeradius.org>
Fri, 31 May 2019 16:52:28 +0000 (12:52 -0400)
committerAlan T. DeKok <aland@freeradius.org>
Fri, 31 May 2019 16:52:28 +0000 (12:52 -0400)
src/lib/server/cf_file.c

index 8c33475bcd04205964f7c79b1ab75bd433a3a404..416c1e90b1439e8d254ce69cd2d2894b00a2f6b2 100644 (file)
@@ -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;
                        }