diff options
author | Omar Polo <op@omarpolo.com> | 2024-01-30 09:31:09 +0000 |
---|---|---|
committer | Omar Polo <op@omarpolo.com> | 2024-01-30 09:31:09 +0000 |
commit | bb5a25d287c92391f4a010b18fcbf4cc0f35ad69 (patch) | |
tree | e5de9a852704665b193af6a439369f9e65d8b469 /regress | |
parent | f862d389ff60b517257e709b739ad13309d53be4 (diff) |
rename the @common_opt macro back to @common
now common is no longer a reserved keyword
Diffstat (limited to 'regress')
-rw-r--r-- | regress/tests.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/regress/tests.sh b/regress/tests.sh index 7a2c2cd..72ad303 100644 --- a/regress/tests.sh +++ b/regress/tests.sh @@ -287,7 +287,7 @@ test_fastcgi_deprecated_syntax() { test_macro_expansion() { cat <<EOF > reg.conf pwd = "$PWD" -common_opts = "lang it; auto index on" +common = "lang it; auto index on" server "localhost" { # the quoting of \$ is for sh @@ -295,7 +295,7 @@ server "localhost" { key \$pwd "/localhost.key" root \$pwd "/testdata" listen on $REGRESS_HOST port $port - @common_opts + @common } EOF |