Commit f5679bbf authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Fix another inline-C case which tripped up compiler.

parent e95740ad
...@@ -8,11 +8,12 @@ server s1 { ...@@ -8,11 +8,12 @@ server s1 {
varnish v1 -cliok "param.set vcc_allow_inline_c true" -vcl+backend { varnish v1 -cliok "param.set vcc_allow_inline_c true" -vcl+backend {
C{ C{
#include <stdio.h> #include <stdio.h>
void foo(void) }C
{ sub vcl_recv {
C{
printf("%s %s %s", "foo", "bar", "barf"); printf("%s %s %s", "foo", "bar", "barf");
}C
} }
}C
} -start } -start
client c1 { client c1 {
......
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