__ini_value: fix use of removed constant

_param was removed in preference of the param functions.
This commit is contained in:
matze 2021-09-29 20:24:22 +02:00
parent 122354a0dc
commit b4f381ed4c
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ BEGIN {
get_param_array("comment-sign", comment_signs)
comment_sign = comment_signs[0]
if(system("test -f " (_param "quote")) == 0) {
if(system("test -f " (ENVIRON["__object"] "/parameter/quote")) == 0) {
# quote it now that it only wins checks against quoted values
value = ("\"" value "\"")
}