Commit 4fcc6b02 authored by Federico G. Schwindt's avatar Federico G. Schwindt Committed by Lasse Karstensen

Use `all' for vars marked as all

Previously it said `vcl_all' which doesn't exist.  Minor cosmetics while
I'm here.
parent ffd37357
......@@ -690,8 +690,8 @@ sp_variables = [
( 'deliver', 'synth', ), """
The HTTP status code that will be returned.
Assigning a HTTP standardized code to resp.status will also
set resp.reason to the corresponding status message.
Assigning a HTTP standardized code to resp.status will also
set resp.reason to the corresponding status message.
"""
),
('resp.reason',
......@@ -1316,6 +1316,8 @@ def rst_where(fo, h, l):
ll.append(j)
elif j == "backend":
ll.append(j)
elif j == "all":
ll.append(j)
else:
ll.append("vcl_" + j)
for j in ll:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment