Commit 7c89c968 authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Monday morning flexelinting & whitespace OCD

parent 4e568f8f
......@@ -52,7 +52,7 @@ const struct vcltemp VCL_TEMP_BUSY[1] = {{ .name = "busy", .is_warm = 1 }};
const struct vcltemp VCL_TEMP_COOLING[1] = {{ .name = "cooling" }};
// not really a temperature
const struct vcltemp VCL_TEMP_LABEL[1] = {{ .name = "label" }};
static const struct vcltemp VCL_TEMP_LABEL[1] = {{ .name = "label" }};
/*
* XXX: Presently all modifications to this list happen from the
......
......@@ -32,7 +32,7 @@
*/
struct vfilter;
struct vcltemp;;
struct vcltemp;
VTAILQ_HEAD(vfilter_head, vfilter);
......
......@@ -146,6 +146,8 @@
// cache_vcl.c
-esym(528, vcl_call_method) // Not referenced
-esym(765, VCL_TEMP_*)
-esym(759, VCL_TEMP_*)
-e441 // for clause irregularity: loop variable '___' not found in 2nd for expression
......
varnishtest "VSL quoted fields"
server s1 {
rxreq
txresp
rxreq
txresp
} -start
varnish v1 -vcl {
import std;
backend be {
.host = "${s1_sock}";
.probe = { .interval = 1m; }
}
backend be {
.host = "${s1_sock}";
.probe = { .interval = 1m; }
}
sub vcl_recv {
# a series of 3-fields log records
std.log({" custom log "ok" "});
std.log({" "valid" "fields" ok "});
std.log({" "missing""blank" ko "});
std.log({" missing dquote "ko "});
# "
std.log({" missing dquote "ko "}); # "
return (synth(200));
}
} -start
......@@ -30,17 +29,17 @@ client c1 {
# records with malformed fields don't show up
shell -expect "2" {
varnishlog -d -n ${v1_name} -g raw -q 'VCL_Log[3]' | wc -l
varnishlog -d -n ${v1_name} -g raw -q 'VCL_Log[3]' | wc -l
}
server s1 -wait
shell -expect "Went healthy" {
varnishlog -d -n ${v1_name} -g raw \
-q 'Backend_health[10] eq "HTTP/1.1 200 OK"'
varnishlog -d -n ${v1_name} -g raw \
-q 'Backend_health[10] eq "HTTP/1.1 200 OK"'
}
# s1 starts sick before the first probe request is made
shell -expect "Went sick" {
varnishlog -d -n ${v1_name} -g raw -q 'Backend_health[10] eq ""'
varnishlog -d -n ${v1_name} -g raw -q 'Backend_health[10] eq ""'
}
......@@ -32,8 +32,8 @@
/*lint -save -e525 -e539 */
// upper lower type len
SESS_ATTR(TRANSPORT, transport, void, 0)
// upper lower type len
SESS_ATTR(TRANSPORT, transport, void, 0)
SESS_ATTR(REMOTE_ADDR, remote_addr, struct suckaddr, vsa_suckaddr_len)
SESS_ATTR(LOCAL_ADDR, local_addr, struct suckaddr, vsa_suckaddr_len)
SESS_ATTR(CLIENT_ADDR, client_addr, struct suckaddr, vsa_suckaddr_len)
......
......@@ -297,6 +297,7 @@ vmod_typesize(VRT_CTX, VCL_STRING s)
i += (l - a); /* align */
i += l;
}
AN(p);
a = i % p;
if (a != 0)
i += (p - a); /* pad */
......
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