rename the @common_opt macro back to @common

now common is no longer a reserved keyword
This commit is contained in:
Omar Polo 2024-01-30 09:31:09 +00:00
parent f862d389ff
commit bb5a25d287
1 changed files with 2 additions and 2 deletions

View File

@ -287,7 +287,7 @@ test_fastcgi_deprecated_syntax() {
test_macro_expansion() { test_macro_expansion() {
cat <<EOF > reg.conf cat <<EOF > reg.conf
pwd = "$PWD" pwd = "$PWD"
common_opts = "lang it; auto index on" common = "lang it; auto index on"
server "localhost" { server "localhost" {
# the quoting of \$ is for sh # the quoting of \$ is for sh
@ -295,7 +295,7 @@ server "localhost" {
key \$pwd "/localhost.key" key \$pwd "/localhost.key"
root \$pwd "/testdata" root \$pwd "/testdata"
listen on $REGRESS_HOST port $port listen on $REGRESS_HOST port $port
@common_opts @common
} }
EOF EOF